Fix for WordPress “Allowed memory size exhausted” fatal error

 

While trying to upgrade a few WordPress plugins, I got this error message:

Fatal error: Allowed memory size of 33564432 bytes exhausted (tried to allocate 7680 bytes)

Logo_Wordpress

After struggling with trying to fix this, I found a really easy solution – increase the WordPress memory allocation size from 32 MB to 64 MB.  To do this, edit your wp-settings.php and change line 13 from:

define('WP_MEMORY_LIMIT', '32M');

to

define('WP_MEMORY_LIMIT', '64M');

Simple, easy and delicious. No more memory issues for any plugin upgrades!

Another way is to edit php.ini and define the memory_limit there:

memory_limit = 48M

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">