Fatal error: Allowed memory size of xxxxxxxx bytes exhausted in wordpress
If you are getting “Fatal error: Allowed memory size of xxxxxxxx bytes exhausted” error message in your wordpress then just increase php memory limit.
To increase PHP memory limit
1.Open your wp-config.php file.
2.Add below code in a new line
define('WP_MEMORY_LIMIT', '64M');
and save the changes
(more…)