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

求助:文件无法上传

[复制链接]
发表于 2009-5-24 18:35:56 | 显示全部楼层 |阅读模式
我使用ci自带的文件上传类上传文件,提示错误:The upload path does not appear to be valid.

我使用的是最新ci版本,入口文件是index.php,网站在目录system/application下面放着,
操作系统是win xp.

上传配置设置如下:
   $config['upload_path'] = './';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '100000';
  $config['max_width']  = '1024';
  $config['max_height']  = '768';


上传提示错误:The upload path does not appear to be valid.



谢谢大家帮助!
 楼主| 发表于 2009-5-24 19:09:39 | 显示全部楼层
知道了。
原来是少了一步:$this->upload->initialize($config);
发表于 2009-5-24 21:32:39 | 显示全部楼层
$this->load->library('upload',$config);

本版积分规则