1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Macで"cdf v2 document, corrupt: can't expand summary_info"

Posted at

簡単なファイルアップロード機能ですが、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());

$_FILEStypeは確かに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として追加しました。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?