I am new to Laravel. I was trying to open http://localhost/test/public/
and I got
Error in exception handler.
I googled around and changed the permission of storage directory using chmod -R 777 app/storage
but to no avail.
I changed debug=>true
in app.php
and visited the page and got Error in exception handler:
The stream or file "/var/www/html/test/app/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied in /var/www/html/test/bootstrap/compiled.php:8423
Then I changed the permissions of storage directory using the command chmod -R 644 app/storage
and the 'Error in exception handler' error was gone and a page is loaded. But in there I am getting this:
file_put_contents(/var/www/html/laravel/app/storage/meta/services.json): failed to open stream: Permission denied
php artisan cache:clear
thenchmod -R 777 app/storage
finallyphp artisan dump-autoload
– vsmoraes