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

[控制器] 使用uoload类,一直报错说上传路径错误

[复制链接]
发表于 2017-5-15 14:55:30 | 显示全部楼层 |阅读模式
uploads文件夹和index.php是同级目录的。在windows系统下测试,不存在文件夹权限问题     

   $config['upload_path'] = './uploads/';
        $config['allowed_types']    = 'gif|jpg|png|';
        $config['max_size']     = 100;
                $congig['file_name'] = time().mt_rand(1000,9999);

        $this->load->library('upload', $config);

        if ( ! $this->upload->do_upload('thumb'))
        {
            $data = array('error' => $this->upload->display_errors());
        }
        else
        {
            $data = array('upload_data' => $this->upload->data());
        }
               
                p($data);
                die;

本版积分规则