Upload xls or xlsx files with codeigniter, mime-type error

后端 未结 4 1355
我寻月下人不归
我寻月下人不归 2020-12-03 15:20

Well, i believe this is not a Codeigniter problem per se as it is more of a mime-type.

I\'m trying to upload a file, a xls (or xlsx) file a

4条回答
  •  自闭症患者
    2020-12-03 15:47

    I'm getting this error also.

    CI is reporting a file type of 'application/zip' which makes sense as the xlsx format is a compressed format (rename it to zip and you can open the contents).

    I have added/replaced the following line to the mime types file (application/config/mimes.php):

    'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/zip'),
    

    and that works (for this browser at least!)

提交回复
热议问题