CodeIgniter Upload class PDF filetype not allowed

后端 未结 3 2114
我寻月下人不归
我寻月下人不归 2021-01-14 09:51

Works locally but on the two servers I\'ve tried the same error message is shown. Using Codeigniter 2.1.3

private function upload_file(){
    $config[\'uploa         


        
3条回答
  •  既然无缘
    2021-01-14 10:30

    Instead of

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

    Try this

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

    This works for me

提交回复
热议问题