wgoulart
Member
Posted 2 years ago #
All previous upgrades to all previously new versions upgraded just fine. However, with 2.9 the process of upgrading is not working. A strange error message appears:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2515174 bytes) in /home125a/sub008/sc69738-WNIO/www/wp-includes/http.php on line 1327
bh_WP_fan
Member
Posted 2 years ago #
Increase the amount of memory a PHP script may consume. Note: If using a shared hosting service, you may need to ask your host to increase the limit.
1. Increase the memory limit setting in php.ini (e.g. memory_limit = 64M ;). Many hosts may not allow this.
2. Increase the memory limit via .htaccess (e.g. php_value memory_limit 64M). Many hosts may not allow this.
3. Increase the memory limit via wp-config.php (e.g. define('WP_MEMORY_LIMIT', '64MB');)
msquared
Member
Posted 2 years ago #
The item 3 example code should read,
define('WP_MEMORY_LIMIT', '64M');
Thanks for the fix!