2015-08-26 33 views
0

我要上傳的ODS文件,但它顯示了一個錯誤: 您嘗試上傳的文件類型是不允許您嘗試上傳的文件類型是不允許在笨ODS文件

$config['upload_path'] = './uploads/'; 
      $config['allowed_types'] = 'ods|csv|xls'; 
    //  $config['max_size'] = ''; 
      $config['max_width'] = ''; 
      $config['max_height'] = ''; 
      $this->load->library('upload', $config); 

      if (!$this->upload->do_upload()) 
      { 
       $error = array('error' => $this->upload->display_errors()); 

       $this->load->view('uploadstatement',$error); 
      } 

        else 
      { 
    $data = array('upload_data' => $this->upload->data()); 
    $data1=$this->upload->data(); 
    $csv_file1=$data1['file_name']; 

回答

0

added/replaced以下行到mime類型文件application/config/mimes.php

'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' 
相關問題