プロジェクト

全般

プロフィール

Bug(バグ) #3699

kaoru n さんが約10年前に更新

h3. Overview (現象) 

 拡張子が「docx」のファイルをアップロードしようとすると、読み込み中表示になりアップロード出来ない 

 h3. Causes (原因) 

 Fileテーブルのtypeカラムのサイズが、varchar(64)になっているため、MIMEタイプ名が64文字を超えると登録できない。 
 <pre> 
 .doc  	 application/msword 
 .xls  	 application/vnd.ms-excel  
 .ppt  	 application/vnd.ms-powerpoint 
 .docx  	 application/vnd.openxmlformats-officedocument.wordprocessingml.document 
 .xlsx  	 application/vnd.openxmlformats-officedocument.spreadsheetml.sheet 
 .pptx  	 application/vnd.openxmlformats-officedocument.presentationml.presentation 
 </pre> 

 参考 
 http://filext.com/faq/office_mime_types.php 
 http://support.microsoft.com/kb/936496/en-us 
 http://www.iana.org/assignments/media-types/media-types.xhtml 

 h3. Way to fix (修正内容) 


戻る