我一直在搜索问题的可能原因“无法使用提供的主机名连接到您的FTP服务器。”对于codeigniter ftp库,但我遇到了困难。 我一直在解决问题。 Web服务器和FTP服务器(NAS)已经相互连接。
function index(){
$this->load->library('ftp');
$config['hostname'] = 'artinite.comps.net';
$config['username'] = 'artinite\dev';
$config['password'] = 'password';
$config['port'] = 21;
$config['passive'] = TRUE;
$config['debug'] = TRUE;
$this->ftp->connect($config);
$this->ftp->close();
}
我将非常感谢你的帮助。