Fatal error: Allowed memory size of 33554432 bytes exhausted

General Vistas: 896

When you get a allowed memory size exhausted error you need to increase your php memory_limit value. If you’re allowed to edit the PHP.ini file, update your memory_limit in PHP.ini by modifying the below line:

memory_limit = 256M;

If you can not access the php.ini file, try adding the following to your .htaccess file:

php_value memory_limit 256M

OR, if this also does not work, edit wp-config.php file and add the following before the comment thats all Happy Blogging.

define('WP_MEMORY_LIMIT', '256M');
If 256M is not enough, try more (like 512M).

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *