I am trying to get my Laravel 5 project running on my shared hosting through FTP.
I have uploaded all my project files from my local XAMP-folder to the server root directory and put the files in the 'public' folder in the public_html folder.
When I go to mydomain.com I get redirected to mydomain.com/auth/login as I set in my routes.php so that seem to be working although I'm getting 500 internal server error on all paths.
Sometimes this is because the storage folder is not writeable by the server. One possible way is go via ssh into the app (i.e. /path/to/mywebsite) and then do
Because logs, caches, need to be written there. Or you can also do that with the FTP app (just make everything executable, readable, writeable).
UPDATE:
Another solution (that I use every now and then - and apparently also worked here :-) ) is to add
as a line right after
in the .htaccess file.