php 增加WordPress内存限制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 增加WordPress内存限制相关的知识,希望对你有一定的参考价值。
/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Edit your PHP.ini file.
* If you have access to your PHP.ini file,
* change the line in PHP.ini
* If your line shows 64M try 256M:
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
memory_limit = 256M ; Maximum amount of memory a script may consume (64MB)
/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Edit your .htaccess file.
* If you don’t have access to PHP.ini
* try adding this to an .htaccess file:
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
php_value memory_limit 256M
<?php
/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Edit your wp-config.php file.
* Add this to the very bottom, right before
* the line that says, “Happy Blogging”.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
define('WP_MEMORY_LIMIT', '256M');
以上是关于php 增加WordPress内存限制的主要内容,如果未能解决你的问题,请参考以下文章
使用.htaccess文件增加wordpress中的上载限制
增加 PHP 内存限制(Apache、Drupal6)
如何在php 7中增加内存限制[重复]
WordPress 2MB 内存限制无处不在
Drupal增加内存限制设置.php
增加 wamp 的内存限制