laravel ssh - Expected SSH_FXP_VERSION

3.6k Views Asked by At

I am using the laravel Task functions to run some code using phantomjs and then using the output. The code is executed using a artisan command.

This is a part of the code I use:

private static function phantomjs($file, $c, $a)
{
    SSH::run(array("phantomjs " . base_path("phantomjs/" . $file)), function($line)
    {
        $json = json_decode($line);
        DataHelper::saveJson($json);
    }
}

Whenever I run the command I get the following error on this piece of code:

[ErrorException]
Expected SSH_FXP_VERSION

If I output the command and run it in a terminal myself it works just fine.

Does anyone know if I need to change some configs or if my code is incorrect? I have already been able to do ssh for executing nodejs scripts.

I am using Debian 7.6 on my server.

Thanks for helping. :)

1

There are 1 best solutions below

0
On

for me it was a problem with the path of sftp-server, instead of /usr/lib/openssh/sftp-server i used /usr/libexec/openssh/sftp-server