Saturday, 9 July 2016

Solved : how to Increase size of wordpress | Plugin not opening correctly due to limit exceeded |

Change the limit Size in this file:

http://Localhost/domainName/wp-includes/default-constants.php


Before:

// set memory limits
if ( !defined('WP_MEMORY_LIMIT') ) {
if ( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
} else {
define('WP_MEMORY_LIMIT', '40M');
}
}

Change this to this:

// set memory limits
if ( !defined('WP_MEMORY_LIMIT') ) {
if ( is_multisite() ) {
define('WP_MEMORY_LIMIT', '128M');
} else {
define('WP_MEMORY_LIMIT', '40M');
}
}


And Save it .
and you have Done it Enjoy!.

No comments:

Post a Comment