MyBB Community Forums

Full Version: [UPDATED][SEO] Simple TagCloud Plugin for myBB v 0.9a - Tag Cloud (beta)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
if wanna support portal you should do it =) its not a problem for me also i forgot my {$cloud} code in our portal plugin at this time [Image: shy21wx8rl2.gif] so if you wanna add support for portal currently adv. portal v7 and v7a users dont need any extra modification xD
Can you paste the newest verion of portal plugin (I dont use it so I do not know what should I download Toungue )
This is a great plugin but Im wait for a code optimization Wink

Thanks!
Ok I willtry do it in next weekend Toungue
Why in some forums by clicking on Tags, Not Found page viewed? (post not deleted)
it doesnt add tags to some topics and white page appears after running for 1 hour(i mean add tags to all threads function)
i have 35k members 32k threads and 350k posts
I just came up with an idea for a suggestion. How about fixing it up to be compatable with the search function? So users have an option to "search tags" for whatever they put in the search box.
Quote: Why in some forums by clicking on Tags, Not Found page viewed? (post not deleted)

Look at htaccess rules. Try
RewriteEngine on
    RewriteRule ^m/tag/([^/]+)$ tags.php?tag=$1 [L,QSA]
    RewriteRule ^m/tag/([^/]+)/([^-/]+)$ tags.php?tag=$1&page=$2 [L,QSA]
    RewriteRule ^m/tag/$ tags.php [L,QSA]
You have got extra directory ' /m/ '.

(2009-09-28, 10:51 AM)sercankd Wrote: [ -> ]it doesnt add tags to some topics and white page appears after running for 1 hour(i mean add tags to all threads function)
i have 35k members 32k threads and 350k posts

It doesn't add if there are swear or too short words (you can edit it in configuration), it is possible that it is too many queries and your server (where your page is) is overload - look at first thread and check if threre are some tags.

(2009-09-30, 08:05 PM)scylla Wrote: [ -> ]I just came up with an idea for a suggestion. How about fixing it up to be compatable with the search function? So users have an option to "search tags" for whatever they put in the search box.

I'll try to do it Toungue
(2009-10-01, 12:38 PM)Watt Wrote: [ -> ]
(2009-09-28, 10:51 AM)sercankd Wrote: [ -> ]it doesnt add tags to some topics and white page appears after running for 1 hour(i mean add tags to all threads function)
i have 35k members 32k threads and 350k posts

It doesn't add if there are swear or too short words (you can edit it in configuration), it is possible that it is too many queries and your server (where your page is) is overload - look at first thread and check if threre are some tags.

maybe you can try some other way if you limit query and when query returns with result it can run again and again but just a simple query so you can protect host agains overload (sharing host got cpu limit so if runs huge query it can be bad you know xD ). when query return with no result it can be stop so every thread will be tagged... it can take little bit time but it will be more stable i think. for example you can have a look to merge script i think it uses similiar system =)

or maybe a task system can be too. also if board admin uses rss2post plugin thoose threads (threads by posted rss) doesnt have tags if after opens auto tagger script run.
any updates on this ?
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46