CodeIgniter Unable to connect ftp hostname -
i been searching possible cause of problem "unable connect ftp server using supplied hostname." codeigniter ftp library, got hard time on it. been trough solutions. web server , ftp server(nas) connected each other.
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(); } i thankful help.