mime类型torrent codeigniter上传文件

时间:2014-08-25 16:42:56

标签: php codeigniter mime-types

我试图上传" torrent"文件到服务器但我收到错误"不允许您尝试上传的文件类型。" 我编辑了文件mime.php:

'btt'   =>  'application/x-bittorrent',
谁能帮助我?

1 个答案:

答案 0 :(得分:0)

我的解决方案是:

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