wordpress 出現Fatal error : Allowed memory size 的錯誤訊息怎麼辦?
5月 29, 2014
wordpress 建到一半出現 Fatal error : Allowed memory size 時,
的確是相當惱火的一件事,建議各位遇到這狀況,
先起身,去倒杯茶,接著…
它就會好了嗎?
嗯,不會的。(被揍)
接著請心平氣和的看完以下這篇:
1.
先到安裝wordpress的主機裡找到public_html > wp-settings.php 這個檔
2.
2.
用dreamweaver或Sublime Text打開(或其他軟體,反正想辦法打開編輯就對了),
找到有WP_MEMORY_LIMIT字眼的那段。
3.
整段是這樣的(欸網路上去哪找比我貼心的人啊還貼整段給你):
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
wp_initial_constants();
4.
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
wp_initial_constants();
4.
在wp_initial_constants();的括弧中,填入define('WP_MEMORY_LIMIT', '256M'),
好啦我知道你可能聽不懂,反正填入後會變成這樣:
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
wp_initial_constants(define('WP_MEMORY_LIMIT', '256M'));
5.
存檔。錯誤解除。
※
網路上有很多建議如:64M.128M...
但我自己是輸入256M才解決,大概是WP實在太大包了!!!!!!(怒)
※
以上這段如果沒辦法直接在主機上面改的話,
也可以先把wp-settings.php這個檔抓下來,改完再丟回去主機中。
0 意見