CodeIgniter:“不允许使用您尝试上传的文件类型。

2022-08-30 13:53:59

我遇到了一个非常奇怪的上传问题。以下是相关的视图文件:

<form action="http://localhost/index.php/temp/upload/" method="post" enctype="multipart/form-data">
    <fieldset>
        <input type="file" name="userfile"/>
        <input type="submit" value="Upload"/>
    </fieldset>
</form>

这是我的控制器的方法:tempupload()

public function upload()
{
    $config['upload_path']   = FCPATH . 'uploads' . DIRECTORY_SEPARATOR;
    assert(file_exists($config['upload_path']) === TRUE);
    $config['allowed_types'] = 'avi|mpg|mpeg|wmv|jpg';
    $config['max_size']      = '0';

    $this->load->library('upload', $config);
    if ($this->upload->do_upload('userfile') === FALSE)
    {
        // Some error occured
        var_dump($this->upload->display_errors('', ''));
        var_dump($_FILES);
    }
    else
    {
        // Upload successful
        var_dump($this->upload->data());
    }
}

当我上传AVI视频时,一切正常。当我上传WMV视频时,我得到以下var转储:

string 'The filetype you are attempting to upload is not allowed.' (length=57)

array
  'userfile' => 
    array
      'name' => string 'wmv.wmv' (length=7)
      'type' => string 'video/x-ms-wmv' (length=14)
      'tmp_name' => string 'C:\wamp\tmp\php2333.tmp' (length=23)
      'error' => int 0
      'size' => int 83914

“wmv”扩展名被解释为 MIME 类型:。这应该没问题,因为我的config/mimes.php有以下几点:video/x-ms-wmv

'wmv' =>  array('video/x-ms-wmv', 'audio/x-ms-wmv')

当我尝试上传其他文件时,情况类似。到目前为止,唯一似乎有效的是我的测试AVI视频。

任何想法可能是错误的?

更新 1:

我的一台机器,只有AVI上传。在另一台开发人员的计算机上,不会上载任何文件。在另一台开发人员的计算机上,所有受支持的文件都会上传。这些是浏览器或服务器问题吗?


答案 1

你正在使用火狐浏览器,不是吗?

您可以尝试查看第 199 行:system/libraries/Upload.php

$this->_file_mime_type($_FILES[$field]);

将该行更改为:

$this->_file_mime_type($_FILES[$field]); var_dump($this->file_type); die();

然后上传您的文件。它会显示类似的东西或其他什么。将其添加到您的 .希望这个帮助=).wmvapplication/octet-streammimes.php

类似的答案在这里

一些链接:


答案 2

$config[“allowed_types”] =“*”;


推荐