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
The only way I know for you to speed up your plugin is to split your database tables. Delimited columns are notoriously slow. If you have a many-to-many relationship (such as each tag can refer to multiple threads, and each thread can have multiple tags), then create a joiner table.

I'm playing with my own tag implementation and have decided on the following data model:

mybb_threads remains the same as the default MyBB installation.

mybb_thread_tag has 3 fields: thread_id (foreign key into mybb_threads), tag (the text of the tag), and approved (a boolean to indicate whether to count this tag). thread_id and tag form the (unique) primary key.
BAD work the display of similar subjects. Take a look when the plugin is a similar thread is a duplicate it many times instantly

How do I fix this?
hallo ?
hi! I've tried it into my board, it slows everithing, sometimes the server goes on a 500 error.
When I disable it the board return very fast.

Can you solve this problem?

thanks
Watt you going to start working on this project again?
1. found that its making tags for things it should not be like
http://www.mysite.ca/tags.php?tag=music&...fobject.js
I add a flash Mp3 player and some other flash stuff and the tag cloud is making tags for them not sure why??

2. and on the Who's Online list any one on a tags page comes up unknown location

But than again i guess you could have fixed already I am using Simple TagCloud Plugin v 0.8

I will try the new one
hi every one...
i have a question Smile
i use V.4 Beta .. what i mast to do for upgrade ? is that ok if i re=upolde new file ? or what .
thanx for helping
Regards
(2010-05-26, 08:13 PM)querschlaeger Wrote: [ -> ]Hi,

I reviewed your plugin and have some suggestions:

1. Add the following to the end of deactivate function:

rebuild_settings();

This will clean the settings.php file. Whenever you add or remove settings you should call this function.

2. On every table you forgot cellspacing and cellpadding tag. Typically MyBB tables are build like this:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">

At the moment your tables don't look like MyBB tables. Wink
3. It seems that templates are not reverted cleanly on deactivation.

On templates editpost and newthread there is a space left:

<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" />

4. It would be better to use install and uninstall functions to modify database and activate and decativate only for switching the plugin on or off.


Any Updates on this part Watt?
Can you link to a live demo of this?
Watt are you going to be around to fix this plugin soon?
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