我试图上传" torrent"文件到服务器但我收到错误"不允许您尝试上传的文件类型。" 我编辑了文件mime.php:
'btt' => 'application/x-bittorrent',
谁能帮助我?
答案 0 :(得分:0)
我的解决方案是:
if($_FILES['userfile']['type'] == 'application/x-bittorrent'){
$config['allowed_types'] = '*';
}