插件激活时出现Wordpress致命内存错误

时间:2016-10-11 13:44:21

标签: php wordpress out-of-memory wordpress-4.6

我正在使用wordpress 4.6,当我尝试激活插件时,seo yaost,jetpack,例如,下面的错误。

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 122880 bytes) in /home/storage/2/2b/18/lgpconsulting/public_html/wp-admin/includes/class-wp-plugins-list-table.php on line 206

我更改了以下文件:

WP-config.php中

define('WP_MEMORY_LIMIT', '96M');
define( 'WP_MAX_MEMORY_LIMIT', '256M' );

WP-settings.php文件

ini_set('memory_limit', '128M');

.htacess

php_value memory_limit 128M

韩国社交协会

3 个答案:

答案 0 :(得分:1)

关于内存问题

你需要增加

define('WP_MEMORY_LIMIT', '96M'); to define('WP_MEMORY_LIMIT', '256M');

同时停用所有插件,然后尝试逐个激活插件

答案 1 :(得分:0)

将此添加到您的wp-config.php:

define('WP_DEBUG', true);

查看是否有错误。

答案 2 :(得分:0)

与您的虚拟主机对话。您已经进行了所有调整以提高内存分配,但是webhost的服务器设置不允许您覆盖其设置。