Log in

View Full Version : file system error


mannaraja
11-01-2008, 03:57 AM
i have change to my storage type.File system to database but following error are found.

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 202356 bytes) in /mounted-storage/home81a/sub009/sc45231-PARM/muthumobiles.org/forums/includes/class_dm_attachment.php(302) : eval()'d code on line 1

SEOvB
11-01-2008, 06:12 AM
Your server is running out of memory executing the script.

1. Do less attachments per cycle
2. Upgrade your php memory limit
3. Contact your host.

Lynne
11-01-2008, 04:54 PM
To quote Steve:
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);Or just increase your memory_limit setting in php.ini to 64M.