$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不同的域时,它将无法正常工作。
答案 0 :(得分:0)
如果不使用临时位置,您无法将文件从ftp1传输到ftp2,您的算法是:从ftp1下载到本地,从本地上传到ftp2