我目前在wordpress仪表板中有此通知。
我已经在我加载的配置文件中将php限制设置为128m。然后我回复了信息,它说128米
我已将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。
任何想法为什么?
答案 0 :(得分:2)
您必须将其写在文件顶部 wp-config.php
<?php
define( 'WP_MEMORY_LIMIT', '256M' );
答案 1 :(得分:1)
发现了这个问题。
答案 2 :(得分:1)
您必须喜欢这种方式:编辑此 wp-config.php 文件
define( 'WP_DEBUG', true );
/* That's all, stop editing! Happy publishing. */
define( 'WP_MEMORY_LIMIT', '256M' );
谢谢