CodeIgniter “The filetype you are attempting to upload is not allowed.”

后端 未结 7 474
伪装坚强ぢ
伪装坚强ぢ 2020-12-20 21:04

I was searching a lot and found many questions regarding this problem, unfortunately none of answers did help me.

I\'m trying to upload a png image, and I\'m receivi

相关标签:
7条回答
  • 2020-12-20 21:46

    Just edit the mimes.php file in application/config/mimes.php and replace the line for the csv by this one:

    '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')
    
    0 讨论(0)
提交回复
热议问题