PDA

View Full Version : Search issue....


BlueBulletRL
Tue 24th Jun '08, 12:47am
So yea I am a web admin and on my site whenever you search the word car you get


Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in /home/httpd/vhosts/tristatetuners.com/httpdocs/forum/search.php on line 1153

Its no other word, Just this one word that we can find as of right now.

Steve Machol
Tue 24th Jun '08, 1:29am
My guess is that you have this set too high:

Admin CP -> vBulletin Options -> Message Searching Options -> Maximum Search Results to Return

Your PHP does not have enough memory allocated to it to complete this operation. Ask your host to increase the 'memory_limit' variable in php.ini to at least 64M.

To temporarily up your limits edit your includes/config.php file and add these lines right under the <?php line:

ini_set('memory_limit', 64 * 1024 * 1024);

BlueBulletRL
Tue 24th Jun '08, 11:53am
I have followed the steps outlined above and still does not work.

Steve Machol
Tue 24th Jun '08, 12:30pm
You cannot get that exact error if you followed those instructions. What is the new error and what did you do exacly?