Development
[Off-Magento] Solving the Warning: ssh2_scp_send(): Failure creating remote file: Invalid ACK response from remote error
Recently I had to use ssh2 through php in order to send files from one server to another. I don’t know why, I was getting a error that was not actually very common on the Internet. My code was: $connection = ssh2_connect($host, $port); ssh2_scp_send($connection, $path_origin, $path_target, 0644); The connection was Read more…