I have tested my Laravel 5 project on localhost its working fine with this url - http://localhost/project-name/public/
Then I uploaded my project on shared hosting, I have made desirable changes for database on .env file then trying to access it with the url - http://companysite.com/folder/innerFolder/public/
but not working and getting 500 internal server error
I have gone through with other questions with the related but no answer lead me to my solution. I have done following steps
- upload my project on root directory parallel to public_html
- update to project/public/index.php
- try to create subdomain pointing to my project but didn't succeed
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at [email protected] to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
I have referred this link laravel.io
Finally, I did the job on my shared hosting. This is what I did
Now... This is the "tricky part"... I see this structure
mail
perl5
php
public_html
[framework-folder]
ssl
Inside of public_html I can see all the files of public directory of Laravel 5 Go to index.php and edit the line 22
And the line 36
The final step is to edit the .htaccess file and add some lines
and update [framework-folder]/server.php
Refresh the cache of my browser and.. Victory!! I know that this is not the absolute right way to install the framework (God, I never spoke about Composer) But... It's working for me now Hope that this can help somebody in order to deploy Laravel 5