|
试图
HTML复制代码 <input name="userfile" id="userfile" type="file" class="s_inputFile fl" size="60" /> 复制代码
控制器
PHP复制代码
//上传照片开始
$path = $_FILES ['userfile']['tmp_name'];
$this->load->library('ftp');
$config['hostname'] = '211.144.119.182';
$config['username'] = 'zexy-pic';
$config['password'] = '123456';
$config['debug'] = TRUE;
$this->ftp->connect($config);
$destpath = '/yang';
$this->ftp->upload($path, $destpath, 'ascii', 0777);
$list = $this->ftp->list_files('/yang');
print_r($list);
$this->ftp->close();
//上传照片结束
复制代码
报错:
An Error Was Encountered
Unable to upload the specified file. Please check your path. |
|