techlab wrote:
Fireboard 1.0.3 used to be really slow on my old linux webserver. It would always take 40 seconds to just be able to show the frontside categories. But I quickly figured out that it was due to the stats plugin.
When I disable it the forum could load within 5 seconds. However sometimes it would still take a long time to load. So to be sure that the stats plugin was no longer being used I renamed the stats directory. However then I got an error messages stating that it
could not find the stats.class.php file, so this means it is still being accessed.
I figured out that the problem lies in the naming of the showstats variable, it seems that the administrator backend saves this setting as showStats instead. Solution, simply change the following two files:
Change line 617 in /components/com_fireboard/template/default/listcat.php from:
if ($fbConfig['showstats'] > 0)
To:
if ($fbConfig['showStats'] > 0)
Change line 37 in /administrator/components/com_fireboard/fireboard_config.php from:
$fbConfig['showstats']='1';
To:
$fbConfig['showStats']='0';
(Remove any double created showStats enties)
Cheers,
Michel
I try this way, but there are some wrong display in msg_posts when viewing a post, ... So I must upload the original file.
