Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 106482 bytes) in…

I was playing with new WordPress plugin. The plugin does not have any issue. However, I faced above issue when I tried to publish a new post. Hmm… Seem like the default 32M WordPress limit was exceeded with this new plugin. How to fix this “Fatal error: Allowed memory size of 33554432 bytes exhausted” issue?

Simple… Just edit your wp-config.php to include the line below:

define(‘WP_MEMORY_LIMIT’, ’64M’);

Related Entries