【发布时间】:2011-12-16 05:17:15
【问题描述】:
$this->load->library('ftp');
$config['hostname'] = 'text.com';
$config['username'] = 'test';
$config['password'] = '12345678';
$config['port'] = 21;
$config['passive'] = FALSE;
$config['debug'] = TRUE;
$conn = $this->ftp->connect($config);
if($conn){
$this->ftp->upload('/ftp1_uploads/images/test.zip','/ftp2_uploads/images/test.zip');
}
我想从ftp1转移到ftp2不是同一个域。
使用 codeigniter 版本 2 返回以下错误
An Error Was Encountered
Unable to locate the source file. Please check your path.
我已经尝试使用相同的路径重命名文件。但是当我从 ftp1 转移到 ftp2 不同的域时,它将无法正常工作。
【问题讨论】:
标签: codeigniter upload ftp