Mime类型的种子编码器上传文件


mime type torrent codeigniter to upload file

我正在尝试上传"torrent"文件到服务器,但我得到一个错误"你正在尝试上传的文件类型是不允许的。"我编辑了文件mime.php:

'btt'   =>  'application/x-bittorrent',

谁能帮我?

我的解决方案是:

if($_FILES['userfile']['type'] == 'application/x-bittorrent'){
    $config['allowed_types'] = '*';
}