Quote:
Originally Posted by ttiger
The film strip you are talking about I'm guessing you mean the option to add images to vbulletin forum, yes that I had to turn off. Apache is optimized and mysql.ini I have been through 1000s of configs and its about as good as I can get it. |
No, the filmstrip is the navigation in showimage.php..
the 2,3,4 or 5 or more thumbnails under the image when you look at the image... if you click them you go to next.. or +2 or +3 images
(its about the same as previous/next image only with thumbnails)
-----------
Have you an idea which pages cause the load? index, browse images or showimage.php?
-----------
When you are in debug mode (vbulletin, you set it on in config.php with $config['Misc']['debug'] = true; ) you should see the mem usage and the queries..
be interesting what mem your pages are using..
(If its a busy live board, You can set debug mode on for your ip only.. by adding instead of :
$config['Misc']['debug'] = true;
$myips = array('127.0.0.1', 'xxx.xxx.xxx.xxx'); // change xxx.xxx.xxx.xxx to your ip
$config['Misc']['debug'] = in_array($_SERVER['REMOTE_ADDR'], $myips);
Luc
Be also interesting to know.. how many images you have per cat...(average)
try creating a new cat.. only 1 or 2 images.. see if the load is as high if you are in that cat..
=========================