У меня проблема с пантомимами xls и xlsx, я пытаюсь загрузить файл Excel, но получаю строку (130)
"application / vnd.openxmlformats-officedocument.spreadsheetml.sheetapplication / vnd.openxmlformats-officedocument.spreadsheetml.sheet "
но у меня есть этот тип в mi xlsx mime
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'),
Это мой загружаемый ccontroller
public function agregararchivo()
{
if($_FILES["userfile"]['name']=='')
{
// Here you can directly redirect to the form page itself with the Error Message
}
else
{
$new_name = time().$_FILES["userfile"]['name']; //This line will be generating random name
$config['upload_path'] = FCPATH ."assets/imagenusuario/";
$config['allowed_types'] = 'xlsx|xls';
$config['file_name'] = $new_name;
$this->load->library('upload', $config); //Loads the Uploader Library
$this->upload->initialize($config);
if ( ! $this->upload->do_upload('userfile')) {}
else
{
$data = $this->upload->data();
}
}
IНе знаю, что не так, если у меня есть этот тип в мимы должны работать, но не.