Codeigniter : The filetype you are attempting to upload is not allowed. Yesterday it was fine

前端 未结 5 1433
忘了有多久
忘了有多久 2021-01-25 23:45

My codeigniter app suddenly broke today. I didn\'t work on the upload code and when I tried to upload an image today I suddenly got \"The filetype you are attempting to upload i

5条回答
  •  被撕碎了的回忆
    2021-01-26 00:18

    Initialize $config and remove base_url() from upload path. It will work properly.

    $this->upload->initialize($config);
    

提交回复
热议问题