• 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??

Viewing 1 replies (of 1 total)
  • 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 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘Increase by default WP_Memory Limit to 64M’ is closed to new replies.