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.


Popular posts from this blog

node.js - How do I prevent MongoDB replica set from querying the primary? -

c# - Randomly pick a specific int from a 2D Array -

php - Angularjs http.delete is not working after deploying project on server -