Hi,
I have also faced the same problem. I have fixed the issue.
Open “wp-includes” folder. Inside, you can see default-constants.php file. Here you should increase memory limit “WP_MEMORY_LIMIT”.
Just scroll down you can see this code
// Define memory limits.
if ( ! defined( ‘WP_MEMORY_LIMIT’ ) ) {
if ( false === wp_is_ini_value_changeable( ‘memory_limit’ ) ) {
define( ‘WP_MEMORY_LIMIT’, $current_limit );
} elseif ( is_multisite() ) {
define( ‘WP_MEMORY_LIMIT’, ’64M’ );
} else {
define( ‘WP_MEMORY_LIMIT’, ’40M’ );
}
}
You just increse ‘WP_MEMORY_LIMIT’, ’40M’ – I mean instead of 40M, increase like 512M.
It should work.