正在尝试增加WP内存限制

时间:2016-05-06 作者:Gary Carlyle Cook

我试图增加WP内存限制:这样我就可以用WordPress使用Fusion Builder和其他东西,但插件的状态仍然是我只将限制设置为40M,即使下面的代码行添加到wp-config.php, 当我希望它至少是2.56亿的时候。

我和WHM/Cpanel在一个云服务器上,所以网络管理员基本上就是我。我想我已经达到极限了php.ini 所以不是这样。

  define( \'WP_MEMORY_LIMIT\', \'256M\' );
  define( \'WP_MAX_MEMORY_LIMIT\', \'256M\' );
请帮忙。

1 个回复
最合适的回答,由SO网友:Andy Smith 整理而成

尝试添加到wp-includes/default-constants.php您可能会看到40M 从第20行开始,更改这些值。我的设置如下:

// set memory limits
    if ( !defined(\'WP_MEMORY_LIMIT\') ) {
        if ( is_multisite() ) {
            define(\'WP_MEMORY_LIMIT\', \'256M\');
        } else {
            define(\'WP_MEMORY_LIMIT\', \'256M\');
        }
    }

相关推荐

Plugin exceeds memory limit

我正在使用该功能从WordPress网站批量删除帖子wp_delete_post 和类别使用wp_delete_category. 这大约是100000篇帖子和4000个类别,过了一段时间,我得到了一个PHP错误PHP Fatal error: Allowed memory size of ... bytes exhausted这就是我在代码中所做的:// get all IDs from the posts and categories $delete_categories = $wpdb-&