[Solved] How to install LARAVEL 5

Since you have SSH access do this: Filesystem SSH into the server Change directory to the project root cd /home/< username > delete the public_html folder rm -rf public_html create a symbolic link from public to public_html ln -s /home/< username >/public /home/< username >/public_html Install Laravel dependencies composer install Change permissions chmod -R 755 … Read more