「WordPress」の「sitemap.xml」(サイトマップ)をプラグイン「XML Sitemap Generator for WordPress 4.0」で生成しているのだが、これがうまく生成できてない事に気がついた。
きっかけは、「Googleウェブマスターツール」
下の図から、1/23~1/29にかけて登録が横一線なのが分かる。
どうやら、サイトマップを生成するのに、phpに割り振られたメモリがオーバーしているとエラーログにあった。
■error.log (apache)
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 3178496 bytes) in *****/wp-content/plugins/google-sitemap-generator/sitemap-core.php on line 1763
メモリ不足だそうだ。
「XML Sitemap Generator for WordPress 4.0」自体、メモリ上限は特に設定してなければ256MBらしい。
一方、「php.ini」のメモリ設定が128MBだった。
「134217728 bytes exhausted」って事は、128MBをオーバーしている・・・
なので、256MBにPHP側も増やすことにして問題解決!
■php.ini
memory_limit = 256M
スポンサードリンク
コメント