
Resolve the WordPress Memory Limit Error
Not like many frequent errors, the WordPress reminiscence restrict state of affairs is simple to troubleshoot. It has a extremely clear set off, so that you simply obtained must endure a whole lot of trial and error in the event you want to decide the way it could also be mounted.
Instead, there are literally solely two strategies forward when you’ve hit a PHP memory limit in your web page. You can enhance the amount of memory allotted to your web page or you might go for a web internet hosting plan that gives further area. Let’s uncover when and the way in which you’d want to make use of each of these methods.
There are some ways to resolve this error:
1. wp-config.php
define( 'WP_MEMORY_LIMIT', '256M' );
2. .htaccess file
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value memory_limit 400M
php_value max_execution_time 600
php_value max_input_time 500
php_value max_input_vars 5000