2 years ago

#76495

test-img

bart2puck

Laravel SSH put files to remote server

I am trying to upload a file from my laravel project to a remote server.

 $fileName = base_path().'/Storage/app/public/uploads/'.$file;
 SSH::into('production')->put($fileName, './');

The result is a blank screen with no errors or anything and the file is not on the remote server. I know my ssh config is correct (keys and username/host stuff) because this works fine:

  SSH::into('production')->run('ls', function($line)
    {
        echo $line.PHP_EOL;
    });

What am i missing? What can i do to see any verbose logging of the SSH call?

laravel

ssh

0 Answers

Your Answer

Accepted video resources