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

前端 未结 5 1432
忘了有多久
忘了有多久 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:00

    Have you initialize the $config properly?

    $this->load->library('upload', $config);
    $this->upload->initialize($config); // Make sure it has been initialized
    

提交回复
热议问题