Laravel - 从5.3更新到5.4后,错误页面为空白

时间:2017-04-07 20:48:24

标签: laravel nginx laravel-5.3 laravel-5.4

我已将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

已提出其他解决方案。但问题仍然存在!

此外,.envconfig/app.php中的应用程序调试程序为true

谁可以提供帮助?

1 个答案:

答案 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