MyBB Codes

Full Version: I Would Like to request a tag cloud plugin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Thank you for your responce where would i add slash or have you done it an i should just redownload

I just asking about the dir just cause i want to put anything that i add to mybb in its own folder to keep my root clean. Its nothing majior just asking if you had time to do it

I would try to do it but i have no clue as how i would do it.
If you want to do this yourself, you can do this:

Replace
PHP Code:[Highlight]
$headerinclude .= "\n".'<META NAME="DESCRIPTION" CONTENT="'.$mybb->settings['Regentronique_Advanced_Thread_Tags_MetaDescription'].'">'."\n"
with
PHP Code:[Highlight]
$headerinclude .= "\n".'<META NAME="DESCRIPTION" CONTENT="'.$mybb->settings['Regentronique_Advanced_Thread_Tags_MetaDescription'].'" />'."\n"

Replace
PHP Code:[Highlight]
$headerinclude .= '">'."\n"
with
PHP Code:[Highlight]
$headerinclude .= '" />'."\n"

For the cloud_data.xml directory you can replace the path here :
PHP Code:[Highlight]
$handle fopen(MYBB_ROOT.'cloud_data.xml','w' ); 
with something like :
PHP Code:[Highlight]
$handle fopen(MYBB_ROOT.'MyDirectory/cloud_data.xml','w' ); 

I will upgrade the Tags Cloud plugins in a few weeks with other features, so if you prefer to wait, it should be available at the beginning of December...

Wink
Hay thank you your too nice I will fix that part
thanks for the code changes
and i will wait for you up grade also
I will check back in dec and see you changes
I noticed you have it running here on your site

Thank you exdiogene

For these changes should i deactavte then reactvate
No, it is not necessary. But if you want the cloud_data.xml file to be accessible after the directory change, I would suggest to copy or move the original file in the new directory. Be sure also that the choosen directory is writable.

Do not forget to change also the directory for this file in your flash application...
I also changed

PHP Code:[Highlight]
$headerinclude .= "\n".'<meta name="DESCRIPTION" content="'.$MyDescription.'">'."\n"
to
PHP Code:[Highlight]
$headerinclude .= "\n".'<meta name="DESCRIPTION" content="'.$MyDescription.'" />'."\n"

And changed META NAME and CONTENT to lower case hope thats ok it valadates now

thank you
Pages: 1 2 3
Reference URL's