WordPress出現Fatal error: Out of memory








※本篇內文資訊參考如下※



- -

※更新文章日期: 2017-09-14










出現Fatal error: Out of memory
瀏覽器錯誤程式碼如下
大概找了一下XAMPP相關討論

原因應該是PHP記憶體相關問題
Fatal error: Out of memory
(allocated 13107200) (tried to allocate 458752 bytes)
in C:\xampp\htdocs\tomchun\wp-content\
plugins\a3-lazy-load\admin\admin-interface.php on line 2878
解決方式
增加PHP記憶體:
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit=128M
或是找到default-constants.php
以下程式碼修改成這樣
// Define memory limits.
if ( ! defined( ‘WP_MEMORY_LIMIT’ ) ) {
if ( false === wp_is_ini_value_changeable( ‘memory_limit’ ) ) {
define( ‘WP_MEMORY_LIMIT’, $current_limit );
} elseif ( is_multisite() ) {
define( ‘WP_MEMORY_LIMIT’, ‘84M’ );
} else {
define( ‘WP_MEMORY_LIMIT’, ‘60M’ );
}
}








-

-