【问题标题】:ftp transfer using codeigniter version 2使用 codeigniter 版本 2 进行 ftp 传输
【发布时间】: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


    【解决方案1】:

    如果不使用临时位置,您无法将文件从 ftp1 传输到 ftp2,您的算法是:从 ftp1 下载到本地,从本地上传到 ftp2

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-03-07
      • 2011-06-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多