Hello everyone, I have a server on GoDaddy and I use this server like a portfolio. I want to add some laravel examples apps to this server but not in the root basepath. I upload the app to the route.
www.mydomain.com/laravel_app/my_app
but when I try to access the application in this route. www.mydomain.com/laravel_app/my_app/public/ I got this error. "Whoops, looks like something went wrong."
My question is, Can I add a Laravel App to other path distinct to root folder? if so. How can I do it or what I need to modify to make it works?
Thanks Andres Rojas
Hello
If you can create subdomains, you can use subdomains for every app
app1.mydomain.com
app2.mydomain.com
Yes you can. In your app/config/app.php file set debug to true (temporarily) or watch the app/storage/logs folder to see what error in particular you are getting. It could be something simple like a file permission issue.
Also, its strongly advised that you keep only public
folder's files in your web visible folder.
probably you didn't set the correct permission to the app/storage folder
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community