|
本帖最后由 pipikaqiu 于 2009-8-19 08:41 编辑
我在使用文件上传类的时候遇到的:rar类型的压缩文件不能上传
我的控制器中设定部分如下
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'rar|zip|docx|xls|txt|gif|jpg|png';
$config['max_size'] = '2048';
$config['max_width'] = '0';
$config['max_height'] = '0';
$config['remove_spaces'] = true;
其他和手册中一样。
而且在mime.php中已经加入了
'rar' => 'application/x-rar-compressed',
在我上传rar文件时会说:
The filetype you are attempting to upload is not allowed.
同时其他类型的文件都正常。
多谢2楼,问题已经解决了.
mime.php里加
'rar' => array('application/x-rar-compressed','application/octet-stream') |
|
|