我使用PHP和SSH2將文件傳輸到遠程服務器。使用ssh2_scp_send()發送的文件在遠程服務器上不完整
我用這個:
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
ssh2_scp_send($connection, '/local/filename', '/remote/filename', 0644);
但有時在遠程服務器上的文件是不完整的。我假設SSH2不會傳輸EOF或其他東西。
你有什麼想法或解決方案嗎?
是否啓用了錯誤報告?如果有問題,你會看到信息嗎? –
是的。我會看到它。 –