我已将Laravel从5.3
更新为5.4
。错误页面为白色,更新后不显示错误。我正在使用本地服务器。规格:
OS: Ubuntu 16.04
Nginx/1.9.15
PHP 5.6.11
我读了这个问题(Laravel blank white screen),我尝试过解决方案:
# Group Writable (Group, User Writable)
$ sudo chmod -R gu+w storage
# World-writable (Group, User, Other Writable)
$ sudo chmod -R guo+w storage
已提出其他解决方案。但问题仍然存在!
此外,.env
和config/app.php
中的应用程序调试程序为true
。
谁可以提供帮助?
答案 0 :(得分:2)
更新laravel后,您可以清除所有缓存和已编译的页面。尝试这样做:
php artisan view:clear
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan clear-compiled
php artisan optimize