-1


In my server (CentOS 7), one of my Laravel 5 projects(the other projects work fine) is not working and returns HTTP ERROR 500.
I have all permissions for storage folder and everything is well, but this error is always diplayed
Version used for Laravel is 5.1 and web server lighttpd
I took a deep look the other similar questions but nothing helps.
Here my log file:

[2017-10-10 14:51:15] staging.INFO: Locale changed to en
[2017-10-10 14:55:41] staging.INFO: Locale changed to en
[2017-10-10 14:55:45] staging.INFO: Locale changed to en
[2017-10-10 14:55:45] staging.INFO: Locale changed to en
[2017-10-10 14:55:48] staging.INFO: Locale changed to en
[2017-10-10 14:55:50] staging.INFO: Locale changed to en

any suggestion please?
Thanks alot

Moslem Cherif
  • 49
  • 2
  • 12

1 Answers1

-1

I fixed the problem !
I hope the solution will be helpful for someone in the future.
I did php artisan cache:clear and again chmod -R 777 storage and I tried and it works.

Moslem Cherif
  • 49
  • 2
  • 12
  • 2
    You should not chmod to **777**! Take a look [here](https://stackoverflow.com/questions/30639174/file-permissions-for-laravel-5-and-others#answer-37266353) to solve your problem – Maantje Oct 10 '17 at 18:59