Fatal error: Allowed memory size of 23556632 bytes exhausted (tried to allocate 3349917 bytes) in /home/xxxxx/public_html/wp-includes/plugin.php on line xxx
if you are getting Fatal error: Allowed memory size while uploading or executing any script in wordpress then you need to increase the PHP memory limit for your wordpress application.
You can update memory limit by three ways:
Here are these methods to try. to apply these it is required intermediate knowledge at code level; as these are not front end changes.
1. By Edit your wp-config.php file
Add following line before “Happy Blogging”:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
2. Edit your .htaccess file
If you can’t access to PHP.ini file then you can try updating “.htaccess” file by adding following line:
php_value memory_limit 256M
3. By Edit PHP.ini file
If you can access PHP.ini file, then open that
file and search for “memory_limit”.
If its value is set to 64M then update it to 256M:
memory_limit = 256M;
Hope this Helps!
You may like:
1 comment
[…] can face in your blog websites like White Screen of death (WSOD), increase maximum execution time, Increase memory limit and many […]