fadion / Maneuver

Easily deploy Laravel projects via FTP or SFTP, using Git for versioning
MIT License
174 stars 26 forks source link

SSH2 Pecl extension not installed error #21

Closed azamatsulaiman closed 8 years ago

azamatsulaiman commented 8 years ago

I get

Oh snap: ssh2 PECL extension is not installed. Please install it to use ssh.

after php artisan deploy command on L5

fadion commented 8 years ago

This was discussed on #5. Basically, you'll need to have the ssh2 PECL extension installed.

alexhoma commented 7 years ago

But where do you need to install this? I'm running my Laravel on local server. The one that comes with laravel -->php artisan serve command Or do I need to install it on my production server?

Thanks @fadion :)

fadion commented 7 years ago

I don't believe you can install extensions for the built-in PHP server. I'd highly recommend setting up vagrant with homestead, an operations that won't take more than 5 minutes. Then you can easily install ssh2 in the vagrant box.

alexhoma commented 7 years ago

Thank you @fadion, it worked as expected with vagrant and homestead.

fadion commented 7 years ago

@alexhoma Glad I was of help.