这几次更新的时候都会遇到同样的错误,然后就很无耻的去求助主机商了(因为看到memory xxx)
得到的答复又要改代码,其实现在挺烦这个的,不过WP更烦,每次都要来升级提示……
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in
后面根据你打开的后台界面而定 比如 /home/xxx/public_html/wp-admin/includes/post.php on line 112
解决方法是,找到wp-includes 中的default-constants.php
// set memory limits
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ‘64M’);
} else {
define(‘WP_MEMORY_LIMIT’, ‘32M’);
}
}
第二个32M变成64M
不过仍然觉得这因主机配置而定……大概的。