JackHenry
Member
Posted 2 years ago #
Every time I upgrade eith incremental or major, i need to change my WP-Settings file to 64M from 32M.
define('WP_MEMORY_LIMIT', '32M');
Is it possible, in light of the fact that most errors occur because of this limit, to change it by default in the WP-Settings file at the development stage??
You could add the memory limit in one of the following files
- wp-config.php file near the top - add: define('WP_MEMORY_LIMIT', '32M');
OR
- htaccess file - add: php_value memory_limit 32M
OR
- php.ini file - add: - memory_limit = 32M;
though truth be told, most need/want 64M :-)