EC-CUBE4のセットアップでメモリ不足エラーが発生。
1 |
[Wed Dec 19 12:14:10.407955 2018] [php7:error] [pid 3201] [client xx.xx.xx.xx:xx] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /var/www/eccube4/vendor/symfony/debug/Exception/OutOfMemoryException.php on line 1, referer: http://xx.xx.xx.xx/eccube4/install/step1 |
デフォルトは128MBなので、設定ファイルを編集して制限を変更する。
1 2 3 4 5 |
$ sudo vi /etc/php.ini ; Maximum amount of memory a script may consume (128MB) ; http://php.net/memory-limit ; memory_limit = 128M memory_limit = 256M |
参考サイト
PHPのメモリの上限を変更する – Qiita
https://qiita.com/dayone80/items/a3f5491c7e5b1ed4ed9e