【问题标题】:csv file uploading is not working properly in codeignitercsv 文件上传在 codeigniter 中无法正常工作
【发布时间】:2015-11-21 19:56:42
【问题描述】:

将 csv 文件上传到实时服务器时出错。但它在本地主机上的相同设置中运行良好。相同的代码适用于 jpg 格式。

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

控制器-:

$config['upload_path'] = './assets/uploads/csv_importing/';
$config['allowed_types'] = 'csv|jpg';
$this->load->library('upload', $config);

// If upload failed, display error
if (!$this->upload->do_upload()) {
    $this->session->set_flashdata('success', $this->upload->display_errors());
    redirect('admin/import_user_csv');
} else {
    echo "file uploaded";
    die();
}

【问题讨论】:

标签: php codeigniter


【解决方案1】:

在 mime 类型文件 application/config/mimes.php 中添加/替换了以下行

'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')

【讨论】:

    猜你喜欢
    • 2015-02-15
    • 1970-01-01
    • 2014-06-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多