PHP Fatal Error: Out of memory

There is four possible ways to solve this.

  1. Try adding this line to your wp-config.php file:

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

  2. If you have access to your PHP.ini file, change the line in PHP.ini

    memory_limit = 1024M ;

  3. Using htacess.

    php_value memory_limit 1024M

  4. if still not solve then

    Talk to your host.