Luca Detomi
Luca Detomi

Reputation: 5716

Laravel-4: Hot to use Laravel 4 without SSH access to my server?

I would like to try Laravel-4 php framework and in documentation I find that is necessary to install it (not ismply copy files).

The problem is that I don't have access via SSH to my server, and until now (I'm currently using Code Igniter php framework) I simply copied my entire project files in remote folder and everything runs correctly.

Hot to use Laravel-4 without SSH access to my server?

Upvotes: 0

Views: 872

Answers (2)

Akshay Khale
Akshay Khale

Reputation: 8361

If you want to install laravel on a server without ssh access then you should try following tools for installation that works if you have ftp access on server

FTPloy

codeship

beanstalk

FTPloy allows to unlimited deployments for a project

Read more here

Note* the link tutorial is old and contain information about laravel 4

hope that solves your problem

Upvotes: 1

petercoles
petercoles

Reputation: 1822

You're interpreting the "Installation" section of the Laravel docs a little too literally. You can build a Laravel app on your local PC or Mac and then FTP the files to your server just as you can for CodeIgniter.

You will find that there's a lot more of them though - but it's not too bad if you create a tar or zip archive and upload that, and expand it again at the other end.

However, you do lose a lot of really useful control over your sites by not having SSH access. Have you considered moving to somewhere like Digital Ocean where for $5 a month you can have a virtual server perfectly capable of running a reasonable sized Laravel application?

Upvotes: 1

Related Questions