即使在指定 MIME 类型后也无法上传 .ppt 文件

Unable to upload .ppt files even after specifing the mime type

我正在使用 uploadifive 上传我的文件。我在上传 fileType 中指定的其他文件时仅上传 ppt 文件时遇到问题。出了什么问题? 这是我的代码

    $(function() {
    $('#file_upload').uploadifive({
        'fileSizeLimit' : 5000,
        'fileType'     : [
            'image/jpeg',
            'image/png',
            'application/pdf',
            'text/csv',
            'text/plain',
            'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
            'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
            'application/vnd.ms-excel',
            'application/vnd.ms-powerpoint',
            'application/mspowerpoint',
            'application/x-mspowerpoint',
            'application/vnd.openxmlformats-officedocument.presentationml.presentation',
            'application/msword',
            'application/csv',
            'application/excel'
        ],
        'uploadScript' : '{{url('file/uploads')}}',
        'formData'     : {
            '_token'     : '{{csrf_token()}}'
        },
        'onInit': addFiles
    });

});

即使指定了 ppt mime 类型,我也会收到一个错误,它不是 accepted.Here 是错误的屏幕截图。

一种可能是服务器确实知道该文件但不想提供它?

您应该检查服务器的设置并添加对文件扩展名的支持。