Codeigniter invalid upload path

后端 未结 5 1270
臣服心动
臣服心动 2021-01-28 16:15

Guys below is given code and folder structure. Anyone can please help me why it appearing \"The upload path does not appear to be valid.\" error? How can I reso

5条回答
  •  深忆病人
    2021-01-28 16:20

    In you config

    $config['upload_path'] = './uploads/414208';
    

    it seems it cannot find directory named "uploads", this might be case sensitive and as ive been seeing in your Folder Structure you have Upload directory. You might want to rename your upload directory from "Upload" to "uploads" or change config upload path to './Upload/414208'

提交回复
热议问题