WordPress – Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 130968 bytes)

Solution:

WordPress’ WP_MEMORY_LIMIT only restricts the memory usage for the wordpress application. It doesn’t increase the memory limit for php. So you still need to increase php’s memory limit. You can do this in the php.ini or if you don’t have access then add this to your wp-config

ini_set('memory_limit', '128M');