FTP连接失败。请帮帮我。
$ftpServer = "xxxx.xxx"; //I have put the IP address
$username = "api";
$password = "api123";
$connId = @ftp_connect($ftpServer); - not Connecting
使用FileZilla,上面的凭据无法正常工作。但是当将端口传递为22时,它在FileZilla中工作。
但通过 $ connId = @ftp_connect($ ftpServer,22); - 未连接
我在服务器上做过这些 chmod 777 -R directoryName资源文件夹 将api用户添加到apache组 / usr / sbin / usermod -a -G apache api
答案 0 :(得分:0)
你试过这个剧本吗?
<?php
function getFtpConnection($uri)
{
// Split FTP URI into:
// $match[0] = ftp://username:password@sld.domain.tld/path1/path2/
// $match[1] = ftp://
// $match[2] = username
// $match[3] = password
// $match[4] = sld.domain.tld
// $match[5] = /path1/path2/
preg_match("/ftp:\/\/(.*?):(.*?)@(.*?)(\/.*)/i", $uri, $match);
// Set up a connection
$conn = ftp_connect($match[1] . $match[4] . $match[5]);
// Login
if (ftp_login($conn, $match[2], $match[3]))
{
// Change the dir
ftp_chdir($conn, $match[5]);
// Return the resource
return $conn;
}
// Or retun null
return null;
}
?>
希望这可以帮到你