我希望能够将.2h文件上传到mediawiki。我认为它是1.310-alpha版本
我在wgFileExtensions中添加了“ 2h”,它几乎可以正常工作。 现在它抱怨:
File extension ".2h" does not match the detected MIME type of the file (application/sla).
该文件是二进制文件,因此我认为我需要以某种方式允许:
application/octet-stream
答案 0 :(得分:0)
复制includes/libs/mime/mime.types
文件,将.2h
添加到以application/sla
开头的行,将$wgMimeTypeFile
指向该文件。
(或确保mime detector未将.2h
文件检测为application/sla
。)