簡単なファイルアップロード機能ですが、Macでの開発環境である.docファイルはアップロードできない。
1.現象:
The filetype you are attempting to upload is not allowed.
mimes.php
'doc' => 'application/msword'
upload.php
$config ['allowed_types'] = 'doc|docx';
var_dump($_FILES);
var_dump($this->upload->data());
$_FILES
のtype
は確かにapplication/msword
になっていますが、$this->upload->data()
のfile_type
は
cdf v2 document, corrupt: can't expand summary_infoになっています。
2.(多分の)原因
ファイルのContentTypeを推測する時がエラーになったらしいです。
CIのソースをDEBUGすると、問題は下記の箇所にありそうです。
// Fall back to the deprecated mime_content_type(), if available (still better than $_FILES[$field]['type'])
if (function_exists('mime_content_type'))
{
$this->file_type = @mime_content_type($file['tmp_name']);
if (strlen($this->file_type) > 0) // It's possible that mime_content_type() returns FALSE or an empty string
{
return;
}
}
この処理の直前finfo_file
を利用しContentTypeを取得する処理があったんですが、前年ながら取得できなかったんです。
3.解決方法
自分も変だと思いますが
'doc' => array('application/msword',"cdf v2 document, corrupt: can't expand summary_info"),
'docx' => array("cdf v2 document, corrupt: can't expand summary_info",
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/zip'),
mimes.php
ファイルに"cdf v2 document, corrupt: can't expand summary_info"をContentTypeとして追加しました。