Here are some tips for curing the memory allocation errors WP Users may see from various modules when they try to edit, preview or publish a post.
“Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 500001 bytes)…..”
PHP memory allocation can be increased several ways.
1. Server wide PHP memory size can be increased via php.ini or similar and requires your hosting service partner’s help.
2. Easier solutions are either to
a. add the line php_value memory_limit 32M to your .htaccess file, or
b. add the line define('WP_MEMORY_LIMIT', '32M'); to your wp-config.php file in your WordPress installation folder.
Note: .htaccess is usually hidden if it exists (in your root Web folder). You may need to turn on the reveal hidden files option in your FTP client to see it.
Recent Comments