php-ssh icon indicating copy to clipboard operation
php-ssh copied to clipboard

An experimental object oriented SSH api in PHP

Results 27 php-ssh issues
Sort by recently updated
recently updated
newest added

Inside the session constructor the local variable should be `subsystems` instead of `subsystem`, it works with old php version because they allow creation of dynamic properties, but it doesn't work...

As title, it seems that this project has been inactive for about over three years. Many issues are wait for reply/feedback and PRs need to be reviewed/merged. @Herzult and @h4cc,...

With php >=7.0, I have the following error when I try to create a directory to a sftp server: ``` The directory 'my_dir' does not exist and could not be...

Hello, I have a problem when I want to send a file through SFTP. This is the following. [Symfony\Component\Debug\Exception\ContextErrorException] Warning: file_put_contents(): Unable to open ssh2.sftp://Resource id #568/${path_remote} on remote host...

PHP 5.6.28 made an (apparently undocumented) change for scanning an SFTP directory. Previously the URL was created by casting the Resource as a string ("Resource #27"), now it requires it...

Follow issue #57 of @GillesCrebassa

PHP Notice: Undefined offset: 1 in /www/symdep.crm.roboforex.com/vendor/herzult/php-ssh/src/Ssh/Exec.php on line 31

This should allow `Exec` to store the current working directory after running a command, and restore it before running the new one.

This causes `SshConfigFileConfiguration::processPath` to turn `~/folder` into `/folder` and cause an error. There are others you can fallback onto (`$_SERVER['HOME']` for one) and as a final fallback it should assume...

Most SSH clients will automatically look for keys in the folder with the config. It would be nice if `getAuthentication` would return a class that could try them one at...