使用ssh2_scp_send()函数无法发送超过10kb的文件

时间:2019-03-09 11:52:41

标签: php libssh2

我的实时网站正在

以下位置运行
  

/cloud/domains/live/domains/domain.com/http

如果我传输的文件少于10 KB,则可以正常工作。 但是当我传输的文件超过10 KB时,则无法正常工作。

$connection = ssh2_connect("MyHost", port);
if(ssh2_auth_password($connection, 'user', 'password')){
    ssh2_scp_send($connection, "/cloud/domains/live/domains/domain.com/http/test.csv","/test.csv")
} else {
    echo "Connection fail";
}
ssh2_exec($connection, 'exit');

0 个答案:

没有答案