Laravel 4 Deploy Fail in shared hosting [closed]

-1

I'm trying to upload my first project with the Laravel 4 framework and I'm having a problem. Upload all FTP project files as there is no other option for contracted service. I uploaded the files and created a .htaccess file that is in the image along with an error message.

    
asked by anonymous 13.03.2014 / 21:57

2 answers

1

I was able to find the solution to this problem, in fact it was the version of the php offered for hosting that was 5.2 and Laravel requires a version 5.3+ so I will indicate this link: link . With that I was able to solve my problem

    
14.03.2014 / 13:36
0

It looks like the autoload.php file was not uploaded to ftp. This file should be inside the bootstrap folder that should be at the same level as the public

The error says that the index.php file was uploaded but that the autoload.php then failed to load, so it looks like php is working and the index.php file is being accessed correctly.

    
14.03.2014 / 00:48