How to upload prc file type?

时间:2013-02-27 作者:Thanh Le

当我尝试上载*.prc 文件类型,我得到以下错误:

抱歉,出于安全原因,不允许使用此文件类型。

我怎样才能解决这个问题?

2 个回复
SO网友:Mike Madern

This article 解释一种方法,在该方法中,可以将文件类型添加到允许的文件类型列表中。

将以下代码复制并粘贴到functions.php:

add_filter(\'upload_mimes\', \'custom_upload_mimes\');
function custom_upload_mimes ( $existing_mimes=array() ) {
    // add your extension to the array
    $existing_mimes[\'prc\'] = \'application/x-mobipocket-ebook\';

    // add as many as you like
    // and return the new full result
    return $existing_mimes;
}
我没有测试代码,但我希望它能帮助您。

SO网友:Vinod Dalvi

在主题中添加以下代码functions.php 文件我已经测试了代码,并且工作正常。

// Add the filter
add_filter(\'upload_mimes\', \'custom_upload_mimes\');

function custom_upload_mimes ( $existing_mimes=array() ) {

    // Add file extension \'extension\' with mime type \'mime/type\'
    $existing_mimes[\'prc\'] = \'application/x-mobipocket\'; 

    // and return the new full result
    return $existing_mimes; 
}
有关更多信息,请参阅this codex page.

结束