增加WordPress内存限制 - 当前内存限制:40 MB |我们建议将内存设置为至少128MB -

时间:2016-10-13 16:49:35

标签: php wordpress apache2

我目前在wordpress仪表板中有此通知。

enter image description here

我已经在我加载的配置文件中将php限制设置为128m。然后我回复了信息,它说128米

enter image description here

我已将wp-config.php文件设置为包含

define( 'WP_MEMORY_LIMIT', '128M' );

然后我用以下内容重新启动了apache以确保进行了更改。

sudo service apache2 restart

然而,当我登录仪表板时,我仍然受到欢迎

Current memory limit: 40 MB | We recommend setting memory to at least 128MB 

我也检查了我的.htaccess文件(它只有mod_rewrite设置),我仍然得到当前内存限制:仪表板中的40mb。

任何想法为什么?

3 个答案:

答案 0 :(得分:2)

您必须将其写在文件顶部 wp-config.php

<?php
define( 'WP_MEMORY_LIMIT', '256M' );

答案 1 :(得分:1)

发现了这个问题。

  1. 设置define('WP_DEBUG',true);在wp-config.php
  2. 插件定义了内存限制,因此被调用了两次。
  3. 删除了讨厌的插件,现在好了。

答案 2 :(得分:1)

您必须喜欢这种方式:编辑此 wp-config.php 文件

define( 'WP_DEBUG', true );

/* That's all, stop editing! Happy publishing. */
define( 'WP_MEMORY_LIMIT', '256M' );

谢谢