0

I have updated Laravel from 5.3 to 5.4. Error pages are white and do not display an error after update. I am using a local server. The specifications:

OS: Ubuntu 16.04
Nginx/1.9.15
PHP 5.6.11

I read the this question (Laravel blank white screen) and I have tried solutions:

# Group Writable (Group, User Writable)
$ sudo chmod -R gu+w storage

# World-writable (Group, User, Other Writable)
$ sudo chmod -R guo+w storage

And other solutions have been proposed. But the problem persists!

Also, Application debuggin in .env and config/app.php is true.

Who can help?

Community
  • 1
  • 1
Ali Hesari
  • 1,821
  • 5
  • 25
  • 51
  • What do the log files say – Ohgodwhy Apr 07 '17 at 21:02
  • Can you provide a sample of your code?, where are the errors supposed to happen?, also check this https://laracasts.com/discuss/channels/laravel/blank-white-screen – Omar Tarek Apr 07 '17 at 21:10
  • @Ohgodwhy In this file errors are recorded. `[2017-04-07 21:08:27] local.ERROR: exception 'ErrorException' with message 'Undefined index: image' in /home/ali/www/brandmashhoor/storage/framework/views/57345fd9a58712cb3d79cd32e59c661578d51e7f.php:30 ` – Ali Hesari Apr 07 '17 at 21:10
  • @OmarTarek This problem is not related to the type code. – Ali Hesari Apr 07 '17 at 21:14
  • review this [answer](http://stackoverflow.com/questions/42680088/laravel-install-on-bluehost-500-error-despite-multiple-methods-of-install/42680785#42680785) – Amr Aly Apr 07 '17 at 21:52

1 Answers1

2

After update your laravel you may clear all your cache and your compiled page. Try to do this:

php artisan view:clear
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan clear-compiled
php artisan optimize
brunohdaniel
  • 612
  • 5
  • 18