Codeigniter FTP下载无法正常工作

时间:2014-10-03 21:44:44

标签: php codeigniter ftp

我正在尝试使用codeigniter FTP类将文件从网络服务器下载到本地计算机。这是我的代码。

$this->load->library('ftp');

$config['hostname'] = 'ftp.mysite.com';
$config['username'] = 'username';
$config['password'] = '******';
$config['port']     = 21;
$config['passive']  = FALSE;
$config['debug']    = TRUE;
$this->ftp->connect($config);
$server_path = '/home1/user/public_html/podio/download/my document file.docx';
$local_path = '/Users/shani/Desktop/downloads/my document file.docx';
$this->ftp->download($server_path, $local_path, 'ascii');

我收到此错误 消息:ftp_get(/Applications/MAMP/htdocs/podio-dash/downloads/file.docx):无法打开流:没有这样的文件或目录 本地目录具有所有读写权限。 任何帮助都将受到高度鼓励。提前谢谢。

0 个答案:

没有答案