简体   繁体   English

在codeigniter中上传docx文件

[英]uploading docx file in codeigniter

mimes.php哑剧.php

        'doc'   =>  array('application/msword', 'application/vnd.ms-office'),
        'docx'  =>  array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
        'dot'   =>  array('application/msword', 'application/vnd.ms-office'),
        'dotx'  =>  array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword'),
        'xlsx'  =>  array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'),
        'word'  =>  array('application/msword', 'application/octet-stream'),

var_dump is giving following response var_dump 给出以下响应

string(24)"application/octet-stream"

This is my some controller code这是我的一些控制器代码

        if(!empty($_FILES['file_name']))
                        {
                            // Profile Pic upload
                            $config = array();
                            $config['upload_path']           = 'uploads/file/'; 
                            $config['allowed_types']         = 'gif|jpg|png|jpeg|pdf|csv|txt|doc|docx|rar|zip|svg|xml|GIF|JPG|PNG|JPEG|PDF|DOC|XML|DOCX|xls|xlsx|CSV|TXT|SVG'; 
                            $config['max_size']              =10000; 
                            $config['max_width']             = 1024; 
                            $config['max_height']            = 1024; 
                            $config['file_ext_tolower']      = true;
                            $this->load->library('upload', $config, 'profilepic');
                            $this->profilepic->initialize($config);

                            if(!$profile_pic = $this->profilepic->do_upload('file_name')) 
                            {
                                $this->session->set_flashdata('message', $this->upload->display_errors());
                            }
                            else 
                            {
                                 $imgname = $this->profilepic->data();
                                 $imgpath = 'uploads/file/'.$imgname['file_name'];
                                 $data['file_name'] = $imgpath;
                            }                       
                        }else{
                            $this->session->set_flashdata('message', 

'Please I tried all the possible solution available but not able to succeed.Please suggest. '请我尝试了所有可能的解决方案,但无法成功。请建议。

我错过了控制器中的 docx,在 docx mimes 中添加“application/octet-stream”正在解决问题。感谢您的努力和时间。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM