无法使用 ssh2_scp_recv 和 ssh2_scp_send 发送或接收文件
不知道出了什么问题,但我无法使用 SSH 发送或接收文件。
我正在使用以下代码,
define('SSH_HOST', 'HOST');
define('SSH_USER', 'USER');
define('SSH_PASS', 'PASSWORD');
$connection = ssh2_connect(SSH_HOST, 22);
ssh2_auth_password($connection, SSH_USER, SSH_PASS);
$remoteFile = '/remote/absolute/path/file.ext';
$localFile = '/local/absolute/path/file.ext';
if(ssh2_scp_recv($connection, $remoteFile, $localFile)){
echo("received");
}else{
echo("NOT received");
}
此函数和 file_get_contents
函数都不起作用。 奇怪的是,我可以通过调用
$sftp = ssh2_sftp($connection);
$statinfo = ssh2_sftp_stat($sftp, $remoteFile);
但无法读取文件数据来获取文件统计信息。
我必须在任一服务器上设置一些特殊权限吗?
Not sure what's wrong but I am unable to send or receive file using SSH.
I am using the following code
define('SSH_HOST', 'HOST');
define('SSH_USER', 'USER');
define('SSH_PASS', 'PASSWORD');
$connection = ssh2_connect(SSH_HOST, 22);
ssh2_auth_password($connection, SSH_USER, SSH_PASS);
$remoteFile = '/remote/absolute/path/file.ext';
$localFile = '/local/absolute/path/file.ext';
if(ssh2_scp_recv($connection, $remoteFile, $localFile)){
echo("received");
}else{
echo("NOT received");
}
Neither this nor file_get_contents
function is working.
The strange thing is that I am able to get file stats by calling
$sftp = ssh2_sftp($connection);
$statinfo = ssh2_sftp_stat($sftp, $remoteFile);
But unable to read file data.
Is there some special permission I have to set on either server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SCP 和 SFTP 是不同的东西。可能您的服务器上禁用了 SCP。
SCP and SFTP are different things. Probably, SCP is disabled on your server.
我会使用 phpseclib,一个纯 PHP SFTP 实现。由于其日志记录功能,更易于使用和诊断问题。 IE。
I would use phpseclib, a pure PHP SFTP implementation. Easier to use and easier to diagnose problems with it due to its logging capabilities. ie.