FTP連接失敗。請幫幫我。FTP連接失敗
$ftpServer = "xxxx.xxx"; //I have put the IP address
$username = "api";
$password = "api123";
$connId = @ftp_connect($ftpServer); - not Connecting
使用FileZilla中與上述憑證傳遞端口爲22的時候不working.But,它的工作在FileZilla中。
但是通過 $ connId = @ftp_connect($ ftpServer,22); - 未連接
我已經在服務器 搭配chmod 777 -R目錄名資源文件夾 做這些增加的API用戶阿帕奇組 /usr/sbin目錄/ usermod命令-a -G阿帕奇API
擺脫'@'的。這抑制了錯誤信息! – delboy1978uk
只是一個快速提醒,我可以看到你的IP –
可能重複[如何與PHP SFTP?](https://stackoverflow.com/questions/4689540/how-to-sftp-with-php)(SSH與FTP無關,同樣的,端口22是用於SSH/SFTP,而不是用於FTP =>您需要使用SFTP而不是FTP。) –