Uploading a csv into Codeigniter

后端 未结 6 1111
醉话见心
醉话见心 2020-11-28 13:45

Has anyone else had trouble uploading a csv file into Codeigniter? I\'m getting a pretty annoying \"The filetype you are attempting to upload is not allowed.\" error, even t

6条回答
  •  一个人的身影
    2020-11-28 14:04

    I got it working by adding cbrandolino's suggested mimetypes to the config/mimes.php (great tip jljohnstone). So the csv property of my $mimes looks like this now:

    'csv'   =>  array('application/vnd.ms-excel', 'text/anytext', 'text/plain', 'text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel')
    

提交回复
热议问题