6

我搜索了很多,发现了很多关于这个问题的问题,不幸的是没有一个答案对我有帮助。

我正在尝试上传 png 图像,但收到以下错误:

不允许您尝试上传的文件类型。

我按照这个 CI 指南来构建我的代码:http ://codeigniter.com/user_guide/libraries/file_uploading.html

这是我得到的:

查看文件:

[..]
   <?= form_open_multipart() ?>
   <input type="file" name="userfile" size="20" />
   <br /><br />
   <input type="submit" value="upload" />
   <?= form_close() ?>
[..]

我的控制器:

    $config['upload_path']   = './uploads/';
    $config['allowed_types'] = 'gif|jpg|png';
    $config['max_size']      = '100';
    $config['max_width']     = '1024';
    $config['max_height']    = '768';


        $this->load->library('upload', $config);

        $xx = array('upload_data' => $this->upload->data());
        $mimetype= $xx['upload_data']['file_type'];

        var_dump('Mime: ' . $mimetype);
        var_dump($_FILES);

        if ( !$this->upload->do_upload())
        {
            Notice::add($this->upload->display_errors(), 'error');
        }
        else
        {
            $data['upload_data'] = $this->upload->data();
        }

如您所见,我正在尝试var_dump使用 mime 类型,结果为空。

当我这样做var_dump($_FILES)时,看起来一切都很好:

array(1) { ["userfile"]=> array(5) { ["name"]=> string(14) "imageofm.png" ["type"]=> string(9) "image/png" ["tmp_name"]=> string(18) "/var/tmp/php5cDAZJ" ["error"]=> int(0) ["size"]=> int(358) } }

另外,我'png' => array('image/png', 'image/x-png'),在我的config/mimes.php.

但是,它确实发生在所有图像上(还没有尝试过其他扩展)。

我将不胜感激每一次帮助尝试。

4

7 回答 7

7

只需编辑application/config/mimes.php中的mimes.php文件,并将csv的行替换为此:

'csv' => array('application/vnd.ms-excel', 'text/anytext', 'text/plain', 'text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel')
于 2013-07-22T15:22:17.630 回答
4

将 'text/plain' 添加到 config/mimes.php 中的 CSV 数组到 $mimes 数组

于 2013-12-27T10:45:23.033 回答
1

用 2.1.2 版本的 upload.php 库替换 codeigniter 2.1.0 system/libraries/upload.php 解决了这个问题。希望这可以帮助

于 2012-09-01T13:09:43.103 回答
1
$this->load->library('upload');  

$this->upload->set_allowed_types('*'); 


class MY_Upload extends CI_Upload {  

    function is_allowed_filetype() {  

        if (count($this->allowed_types) == 0 OR ! is_array($this->allowed_types))  
        {  
            $this->set_error('upload_no_file_types');  
            return FALSE;  
        }  

        if (in_array("*", $this->allowed_types))  
        {  
            return TRUE;  
        }  

        $image_types = array('gif', 'jpg', 'jpeg', 'png', 'jpe');  

        foreach ($this->allowed_types as $val)  
        {  
            $mime = $this->mimes_types(strtolower($val));  

            // Images get some additional checks  
            if (in_array($val, $image_types))  
            {  
                if (getimagesize($this->file_temp) === FALSE)  
                {  
                    return FALSE;  
                }  
            }  

            if (is_array($mime))  
            {  
                if (in_array($this->file_type, $mime, TRUE))  
                {  
                    return TRUE;  
                }  
            }  
            else  
            {  
                if ($mime == $this->file_type)  
                {  
                    return TRUE;  
                }  
            }  
        }  

        return FALSE;  

    }  

}  
于 2013-07-22T15:46:20.747 回答
0

extension=php_fileinfo.dll另一种解决方案是在php.ini中启用

于 2013-04-10T09:51:14.313 回答
0

我只是在第 34 行的 mime.php 中添加了这一行,现在 pptx 正在上传。在真实服务器上测试它

'pptx' => 数组('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),

于 2013-08-15T22:49:36.067 回答
0

实际上,就我而言,我通过void canvas.toBlob(callback, mimeType, qualityArgument)方法从画布创建了一个 blob 对象所以 blob 文件没有其真实名称(具有扩展名),它只是“blob”。所以我必须使用传统方式上传文件,而不是“上传”库:

move_uploaded_file ( $file["tmp_name"], $target_file )
于 2018-07-05T09:47:04.330 回答