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

[已解决] 文件上传类使用出现问题

[复制链接]
发表于 2010-3-20 13:06:59 | 显示全部楼层 |阅读模式
出现这样的error提示:
The upload path does not appear to be valid.

但是我已经定义了path呀,而且还加载了嘛,文件路径也是对的。。

   $config['upload_path'] = base_url().'images/team_info';
   $config['allowed_types'] = 'gif|jpg|png';
   $config['encrypt_name'] = true;
   
   $this->load->library('upload',$config);
发表于 2010-3-20 13:13:37 | 显示全部楼层
upload_path必须是本地路径,不是url
 楼主| 发表于 2010-3-20 13:16:12 | 显示全部楼层
郁闷。。。
改成这样就好了 $config['upload_path'] = '.\images\team_info';
 楼主| 发表于 2010-3-20 13:16:26 | 显示全部楼层
希望后来者借鉴
 楼主| 发表于 2010-3-20 13:55:49 | 显示全部楼层
哦 知道了 感谢!

本版积分规则