Site icon Learning & Doing

Fatal error: Allowed memory size of 33554432 bytes exhausted in wordpress

The problem:

Receive “Fatal error: Allowed memory size of 33554432 bytes exhausted” when try to upload an image with medium file size. To solve this error, try to increase the memory allocated to PHP. You can set the limit to 32MB, 64MB, 128MB or 256MB. It depends on your host.

Solution 1: Edit PHP.ini

memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)

Solution 2: Edit .htaccess file

php_value memory_limit 64M
Solution 3: Edit wp-config.php file

Increasing memory allocated to PHP
define(‘WP_MEMORY_LIMIT’, ’64M’);
Solution 4: Create a PHP.ini file to wp-admin folder

memory_limit = 64M ;

Exit mobile version