CodeIgniter无法连接ftp主机名

时间:2013-08-19 02:47:46

标签: codeigniter ftp

我一直在搜索问题的可能原因“无法使用提供的主机名连接到您的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();
}

我将非常感谢你的帮助。

0 个答案:

没有答案