用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2315|回复: 1
收起左侧

[已解决] 在线等--ftp library 用法

[复制链接]
发表于 2011-1-23 16:39:55 | 显示全部楼层 |阅读模式
试图
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.
发表于 2011-1-23 20:39:40 | 显示全部楼层
先上传,再处理FTP,不能一块儿处理。

本版积分规则