Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:1.0.0 to 1.0.3 extra steps to Boost Performance (1 viewing) (1) Guest
Go to bottom Favoured: 1
TOPIC: Re:1.0.0 to 1.0.3 extra steps to Boost Performance
#21492
1.0.0 to 1.0.3 extra steps to Boost Performance!! 1 Year ago  
Thanks very much to the Fireboard team for 1.0.3

I have just upgraded from 1.0.0 (or 1.0.1) - i was between the 2 i think.

Anyhow i followed the provided instructions (pdf in the download pack).

Everything went pretty smoothly.

Got some SQL errors due to trying to re-add existing keys (or drop non-existent ones) but luckily I am comfy enough with SQL that i knew these were OK.

The main point of my post is this.......
after applying the change script everything worked fine.

But a couple days later I decided to double check that my fireboard SQL tables exactly matched the tables in the document provided (again in the download pack).

And .... I noticed that a bunch of keys were missing...
particularly on fb_messages and fb_users

So i added these keys (i.e. added the ones documented in the 1.0.3 DB structure that were not present on my converted 1.0.0 D

And...............

After adding these indexes FIREBOARD REALLLLYY FLIES!!!!!!

This is soo soo soo much better then any of the functional enhancements.

My site is getting busier ever day and now the forum is slick, responsive and that can only encourage more users and more posts.....THANKS SO MUCH FIREBOARD TEAM.

So to give a little back here (for others converting from 1.0.0) is my SQL to add the missing keys that the official upgrade process missed):

/* Alter table in Second database */
alter table `jo_fb_messages`
add KEY `thread`(`thread`),
add KEY `parent`(`parent`),
add KEY `ip`(`ip`),
add KEY `catid`(`catid`),
add KEY `userid`(`userid`), COMMENT='';

/* Alter table in Second database */
alter table `jo_fb_moderation`
add PRIMARY KEY (`catid`,`userid`), COMMENT='';


/* Alter table in Second database */
alter table `jo_fb_sessions`
add PRIMARY KEY (`userid`), COMMENT='';

/* Alter table in Second database */
alter table `jo_fb_subscriptions`
add KEY `thread`(`thread`),
add KEY `userid`(`userid`), COMMENT='';

/* Alter table in Second database */
alter table `jo_fb_users`
add PRIMARY KEY (`userid`), COMMENT='';

Hope that helps some of you
ianrispin (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/09/09 22:38 By ianrispin.
 
The administrator has disabled public write access.  
#21531
Re:1.0.0 to 1.0.3 extra steps to Boost Performance 1 Year ago  
Thanks
Should the default prefix be "jos_" instead of "jo_" ?
mikeho1980 (User)
Junior Boarder
Posts: 74
graphgraph
User Offline Click here to see the profile of this user
ICQ#: 124373717 Gender: Male mikeho1980 Dog Neighbor mikeho1980 mikeho1980 mikeho1980 Location: Hong Kong Birthdate: 1980-01-01
Logged Logged
 
Dog Neighbor ; Joomla v1.0.12 UTF-8 Traditional Chinese; Fireboard v1.0.1 BETA; PHP 5.2.0 Apache 2.0 mySQL 5.0.27 utf8_general; Internet Explorer 7.0.5730.11 Firefox 2.0.0.11
Fireboard Traditional Chinese Translator
 
The administrator has disabled public write access.  
#21559
Re:1.0.0 to 1.0.3 extra steps to Boost Performance 1 Year ago  
Nice one my friend,

Also note that jo_ should probably be jos_ if your database has that prefix.

Very cool that you've done this.

Clinton
djclinton (User)
I'm a personal person
Junior Boarder
Posts: 41
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Dunedin, New Zealand Birthdate: 1972-03-31
Logged Logged
 
The administrator has disabled public write access.  
#21572
Re:1.0.0 to 1.0.3 extra steps to Boost Performance 1 Year ago  
Yes - sorry u r both correct.

Change the jo_ in the above SQL to whatever is your prefix for your joomla tables (e.g. typically jos_ but can be whatever u set it to)
ianrispin (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top