The last few days my Laravel 5 error reporting has been really inconsistent, and to my knowledge, I'm not changing my config settings. My .env file shows the following:
APP_ENV=local APP_DEBUG=true
and my config/app.php file shows this:
'debug' => env('APP_DEBUG')
These values aren't changing. Sometimes, error reporting appears to be working completely. Sometimes, I can't get ANY error messages to print (just get a 500 with no response body). And sometimes, I get a mix--for example, parse errors won't show up, but errors like NotFoundHttpException will show up when I go to a route I haven't defined.
I suppose this could be L5's issue since it's in alpha and I can expect breaking changes, but I swear it's changing even without a composer update to L5. Anyone seen this? Any ideas on what I might be doing to break it?
UPDATE: I chmod'ed my storage folder to 777 and error reporting came back. So I guess I'm good for now. But, I have needed to change permissions back to 777 multiple times, somehow they're getting changed. Not sure what's going on there exactly.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community