我正在尝试在 php 中进行 ssh 连接。但我收到此错误无法启动 sftp 子系统。我不明白。我在谷歌上找不到太多。请让我知道如何调试它。我正在使用 wamp。
$resConnection = ssh2_connect($strServer, $strServerPort);
if(ssh2_auth_password($resConnection, $strServerUsername, $strServerPassword)){
//Initialize SFTP subsystem
$resSFTP = ssh2_sftp($resConnection); -->error coming here
}else{
echo "Unable to authenticate on server";
}