我正在使用 ftp_get 从另一个 ftp 服务器获取文件。
我的代码在我的本地 WAMP 服务器上运行良好,但是当我将它应用到我的实际网络托管时,连接失败。
$conn = ftp_connect('ftp.server.com') or die('Could not connect');
ftp_login($conn,'myusername','mypassword');
$local_file = 'new/two.txt';
$remote_file = 'games/minecraft/craftbukkit/plugins/VisitCounter/config.yml';
$get = ftp_get($conn,$local_file,$remote_file,FTP_ASCII);
if ($get){
echo 'Connection Successful';
} else{
echo 'Connection failure';
}
exec($get);
ftp_close($conn);
我在想必须在我的网络服务器上禁用建立 ftp 连接所需的东西。
你们中的任何人都可以提供帮助吗?
谢谢,
贾里德