Error 500 when uploading Laravel project to server,
When I upload my Laravel project to my server I get a 500 error (internal server error). I've installed it this way:
Change the database connection from local to the servers database
Export the local database to the server
Copy paste the project to /public_html
On Localhost everything works fine and even a clean install of Laravel doesn't work. In DirectAdmin I can install Laravel with the "Installtron installer" but that is a new project in Laravel 5.1.11 instead of my own project made in Laravel 5.3 .
I have no error logs when I go to the server logs or in my /storage/logs folder.
Is there something I do wrong when I install my project to the server?
In the folder {domain}/public_html I've put all the files from the public folder.
In the {domain} folder I made a new folder called: Laravel and I put all the files except the public folder here.
In the index.php I changed the url from: /..//bootstrap/autoload.php'; to: /../Laravel/bootstrap/autoload.php';
Everything should be good now right? I'm very new with Laravel so I've no experience yet. With websites in the past it was just: Drop all your files in public_html and it should be fine :P