2015-04-03 58 views
0

我上傳的基本Yii2應用我的網絡服務器.. ,它體現在我的error_logYii2內存排氣錯誤

[Fri Apr 03 09:57:59 2015] [error] [client 5.133.137.53] File does not exist: /home/mkiwi/public_html/500.shtml 
[Fri Apr 03 09:57:59 2015] [error] [client 5.133.137.53] ] [notice] EACCELERATOR(19087): PHP crashed on opline 6 of register_shutdown_function() at /home/mkiwi/public_html/basic/vendor/yiisoft/yii2/log/Logger.php:121 

這個錯誤,當我打開這個文件http://myserver/basic/web/index.php它顯示了這個錯誤:

PHP Fatal Error – yii\base\ErrorException 

Allowed memory size of 2147483648 bytes exhausted (tried to allocate 3319912065 bytes) 

有人可以幫我解決這個問題嗎?

+0

顯示您的配置/ web.php請。看起來你正在使用內存緩存,這可能導致內存使用超出限制。 – user1852788 2015-04-03 18:55:33

回答

0

嘗試添加到您的web.php文件的頂部(使用語句) - 爲我工作。

ini_set('memory_limit','512M'); //或者你想要應用的任何內存限制。

希望有所幫助。