vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   vBulletin CMS Widgets - Animated Flash Tags Widget , Flash Tag Cloud (https://vborg.vbsupport.ru/showthread.php?t=237643)

karlm 11-26-2011 12:15 AM

Doesn't work with tags created on CMS only.. but works on 4.1.8 with forum made tags.

CMS tags simply go to the homepage with the tag appended.
i.e. www.mydomain.com/some-tag

whereas the forum made tags use...
www.mydomain.com/tags.php?tag=some-tag

Wild Bronco 12-07-2011 09:05 AM

Quote:

Originally Posted by karlm (Post 2271971)
Doesn't work with tags created on CMS only.. but works on 4.1.8 with forum made tags.

CMS tags simply go to the homepage with the tag appended.
i.e. www.mydomain.com/some-tag

whereas the forum made tags use...
www.mydomain.com/tags.php?tag=some-tag


Same error here in CMS

chq 01-07-2012 11:46 AM

I just installed the tag cloud as per the instructions and uploaded to my root directory but am getting the following 404 not found error when i click on one of the tags?? :mad::mad:

-------------------------
Not Found

The requested URL /homicide+squad was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
--------------------------

Can anyone help me fix this error?

The forum tag cloud works fine.

Many Thanks

thecore762 01-08-2012 07:02 AM

Can someone update this plugin?

sergarch 01-12-2012 06:46 PM

Quote:

Originally Posted by thecore762 (Post 2285089)
Can someone update this plugin?

It should be good!

Please update it!

alhidaya 02-15-2012 10:46 AM

Quote:

Warning: array_values() expects parameter 1 to be array, null given in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 35

Warning: max() [function.max]: When only one parameter is given, it must be an array in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 35

Warning: array_values() expects parameter 1 to be array, null given in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 36

Warning: min() [function.min]: When only one parameter is given, it must be an array in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 36

Warning: Invalid argument supplied for foreach() in [path]/packages/vbcms/widget/execphp.php(191) : eval()'d code on line 47
I have a problem, my vbulletin is v.4.1.1.0

alhidaya 04-13-2012 03:01 PM

Hello,

I reinstalled the tag cloud to update vbulletin 4.1.1.2 and it works now.

Thank you for this little product very nice and cute :)

It is installed but when I click on any word in the tag cloud, it does not direct me to the page.

mrt12345 04-21-2012 02:26 PM

Hi !!! it is working on the 4.1.12 but it is not coming out like in the photo, it is off set more to the right off the framing, just off a little bit but still looks nice . Could anybody give me a tip for centering .and squaring off the box or frame.

thanks nice mod
:up:

cloferba 05-11-2012 07:09 PM

Change
Code:

>options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
    $tagsHTML .= "<a href='$url' style='$size'>$text</a>";

to
Code:

    $url = $vbulletin->options['bburl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
    $tagsHTML .= "<a href='$url' style='$size'>$text</a>";


Glockie 06-01-2012 10:52 AM

Gutted, this no longer works for me on 4.2 :confused:

s_cocis 11-14-2012 10:19 AM

4.2.0
ok!

Neptun 11-21-2012 01:27 PM

is this Widget working without problems on
vb 4.1.10 ?!

Thank you

DoumDoum5058 12-27-2012 07:35 AM

Hi,

This widget is working on VBulletin 4.2
The PHP code is :

PHP Code:

$flashWidth  = '275px'; 
$flashHeight = '275px'; 
$flashPath = 'tagcloud.swf'; 
$flashBackgroundColor = 'ffffff'; 
$tagCount = 35; 
$tagMaxSize = 18; 
$tagMinSize = 8; 

// Colors are in hex 
$data['tcolor'] = '0x000000'; 
$data['tcolor2'] = '0x336699'; 
$data['hicolor'] = '0x000000'; 
$data['speed'] = 100; 
$data['distr'] = 'true'; 
$data['mode'] = 'tags'; 

$contentTypes = array(2=>'tags.php?tag=',18=>'tags.php?tag=',15=>'blog.php?tag=');

/* No Editing Below This Line*/ 

global $vbulletin; 

// %d 

$query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount);

$qtags = vB::$db->query_read($query); 

while($tag = vB::$db->fetch_array($qtags)) { 
    $tags[] = $tag; 
    $tagSize[$tag['tagtext']] = $tag['count']; 


// largest and smallest array values 
$maxQty = max(array_values($tagSize)); 
$minQty = min(array_values($tagSize)); 

$spread = $maxQty - $minQty; 
if ($spread == 0) { 
        $spread = 1; 


$step = ($tagMaxSize - $tagMinSize) / ($spread); 

// make the tag cloud 
$tagsHTML  = ""; 
foreach ($tags as $tag) 

    $size = round($tagMinSize + (($tag['count'] - $minQty) * $step)); 
    $text = $tag['tagtext']; 

    $url = $vbulletin->options['bburl'].'/tags/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
    $tagsHTML .= "<a href='$url' style='$size'>$text</a>"; 


$data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>'; 

$flashVars = ""; 

foreach($data as $var=>$val) 

    $flashVars .= (empty ($flashVars))?'':'&'; 
    $flashVars .= "$var=".urlencode($val); 


ob_start(); 
?> 
<embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/> 
<?php 

$content 
ob_get_contents(); 
ob_end_clean(); 

$output $content;

Thank you for your work ngcoders

marccap 01-23-2013 12:12 PM

Works on 4.2 but its not centered

screen cap - http://gyazo.com/3b14b2d220b3a57bb36ea1c76469c6b0

fxdigi-cash 01-29-2013 11:24 PM

I tried it on vb.4.2 pl3 English and none English versions, but not working at all.

There is some issue going on on displaying....

any idea how to get around that?

john7911 03-17-2013 11:45 AM

Thank you ;)

Bubble #5 08-31-2013 06:43 PM

Using 4.2.1

Was doing fine until I got to this part:

Quote:

? Goto Admincp->vBullietin CMS->Layout Manager
? Click Go on the Default Layout
? Add the Widget to your Layout
? Click Save
There is no default layout. What should we choose?

Thanks.

davidg 09-03-2013 03:28 PM

Quote:

Originally Posted by marccap (Post 2398930)
Works on 4.2 but its not centered

screen cap - http://gyazo.com/3b14b2d220b3a57bb36ea1c76469c6b0

change from this:
Code:

$flashWidth  = 330;
$flashHeight = 330;

to:
Code:

$flashWidth  = 250;
$flashHeight = 250;


Poker Face 09-14-2013 11:59 PM

Does Not Work with 4.2.1, Blank Widget on CMS, made all changes throughout this entire thread to no avail...

Marked as; Installed & Uninstalled

< Removed >

Too Bad, I Like It!

K4GAP 09-23-2013 12:17 AM

Everything works great on 4.2.1 but, the flash object is not centered in the widget. How can I correct this?

My widget is set at 300px wide.

I tried decreasing the object width but that did not help.

theorigin 10-03-2013 01:13 PM

Is there any way to add style inheritance to the widget? I'm running multiple styles, some dark, some light and I want it to match each one.

MrD 07-22-2016 11:05 AM

Hi,
is there an Option to make the widget work without flash?

RichieBoy67 07-22-2016 12:37 PM

Quote:

Originally Posted by MrD (Post 2573630)
Hi,
is there an Option to make the widget work without flash?

You just want a widget with tags? I believe there is one already built in.

I definitely would not recommend installing any flash these days.

MrD 07-22-2016 01:57 PM

Hi,
no there are no Widget with Tags in a Cloud built in :)

RichieBoy67 07-22-2016 02:11 PM

You want a cms widget for version 4? Yes, there is a tag cloud widget. Go to Create a widget and at the very bottom you should see it.

MrD 07-24-2016 07:41 AM

The default one is not Animated :D

RichieBoy67 07-24-2016 07:54 AM

You really shouldn't use flash any more anyways.

JARNAR 06-08-2017 09:47 AM

Hello, how do install this plugin,so that it is visible in the forum?


All times are GMT. The time now is 12:53 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01311 seconds
  • Memory Usage 1,791KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (28)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete