2015年4月4日 星期六

如何增加WordPress取用的記憶體限制






文章來源:http://yesdesigning.com/thread-453-1-1.html

Wordpress 若出現了以下的提示「 Fatal error: Allowed memory size of xxx bytes exhausted (tried to allocate xxx bytes) in xxx.php on line xxx」,代表目前WP系統記憶體不足,需要擴充設定,以下提供簡易的解決方法。



打開wp-includes目錄下default-constants.php文件,找到以下代碼:約第18行
        // set memory limits
        if ( !defined('WP_MEMORY_LIMIT') ) {
                if( is_multisite() ) {
                        define('WP_MEMORY_LIMIT', '64M');
                } else {
                        define('WP_MEMORY_LIMIT', '40M');

                }
        }

將紅字記憶體大小調整為「128M」即可,參考下方代碼:
        // set memory limits
        if ( !defined('WP_MEMORY_LIMIT') ) {
                if( is_multisite() ) {
                        define('WP_MEMORY_LIMIT', '128M');
                } else {
                        define('WP_MEMORY_LIMIT', '128M');

                }
        }

沒有留言:

張貼留言