0
I have an Laravel application using Mysql 5.7: https://github.com/01viniciusmelo/app-login-laravel
In my local environment is working perfectly. I followed this tutorial, but the result is an error 500.
I also made a second attempt following this video Youtube and also the same error is happening.
Application link with error 500: http://app-login-laravel.appspot.com/
Where am I going wrong?
Error 500 is an internal server error, usually caused by permissions or internal server configuration files. As you are using Google Cloud Platform check the settings of the authentication files. https://stackoverflow.com/questions/50549176/google-cloud-storage-500-internal-server-error-googlecloudstoragesignedur
– sant0will
Error 500 is internal server error, to know what happened you have to see the logs. Check the file
storage/logs/laravel.log
and look for the last reported errors– fernandosavio
Okay. I’ll check right now.
– 01viniciusmelo
It’s probably a permission error in the Storage folder. Update the folder permissions and run: php Artisan cache:clear
– Kayo Bruno
I am assigning chmod 755 as per the GCP tutorial. I must change to 777?
– 01viniciusmelo