Home Web Development Allowed memory size of 33554432 bytes exhausted

Allowed memory size of 33554432 bytes exhausted

1524
0

Obviously, you need to increase the amount of memory available to the Script you’re trying to run.

Add this line at the top of the script:
ini_set(“memory_limit”,”12M”);

OR

Add this line to the server’s PHP.INI file:
memory_limit = 12M

If 12M (12 megabytes) isn’t enough, then keep increasing it until it works or until you can’t anymore..

WordPress
To increase the amount of memory available inside a WordPress installation, edit the wp-settings.php file and update this line: define(‘WP_MEMORY_LIMIT’, ’32M’);
Change that value to 64M or more as needed.  FYI…you might have to contact your host if they do not allow you to adjust this value.

Previous articleBlackberry Tour There is insufficient network coverage to process your request
Next articleATT.NET email settings pop3 smtp

LEAVE A REPLY

Please enter your comment!
Please enter your name here