I'm having issues uploading a CSV file in codeigniter.
I am getting the error:
array(1) { ["error"] => string(64) "The filetype you are attempting to upload is not allowed." }
Ok!!
but I am setting allowed_types like this:
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'csv';
$this->load->library('upload', $config);
and i have this in mimes.php:
'csv' => array('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', 'text/plain'),
So any ideas why I am still getting this error?
$_FILES dump:
Array
(
[name] => default questions.csv
[type] => application/force-download
[tmp_name] => /tmp/phpbkXxUd
[error] => 0
[size] => 5899
)