我可以使用本地主机上的 Codeigniter 完美地将文件上传到上传文件夹。但是,当我尝试在服务器上上传时出现此错误。我尝试过不同类型的文件。txt、.doc .xls .jpg 等,在 localhost 上都可以。我查看了 MIME 文件和图像/jpeg 以及我需要的所有其他文件类型('doc' =>'application/msword'等......)。我也检查了文件夹权限,它们没问题,但很明显,由于错误,我什至没有走那么远。
有谁知道为什么它不允许我上传我的文件。
string(57) "The filetype you are attempting to upload is not allowed." array(2)
{ ["testfile"]=> array(5)
{ ["name"]=> string(7) "123.jpg" ["type"]=> string(10) "image/jpeg"
["tmp_name"]=> string(14) "/tmp/phpVYtNNs" ["error"]=> int(0) ["size"]=> int(20921) }
["quotefile"]=> array(5)
{ ["name"]=> string(7) "123.jpg" ["type"]=> string(10) "image/jpeg"
["tmp_name"]=> string(14) "/tmp/phpIsvQ7x" ["error"]=> int(0) ["size"]=> int(20921) } }
控制器:
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png|txt|pdf|xls|csv|doc';
$config['max_size'] = '1000000';
$config['max_width'] = '100024';
$config['max_height'] = '76008';
$this->load->library('upload', $config);
模型:
if ( ! $this->upload->do_upload('testfile'))
{
var_dump($this->upload->display_errors('', ''));
var_dump($_FILES);
//$error = array('error' => $this->upload->display_errors());
//echo '<pre>'; print_r($error); echo '</pre>';
//$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data('testfile'));
$this->load->view('upload_success', $data);
}
$upload_data = $this->upload->data('testfile');
if ( ! $this->upload->do_upload('quotefile'))
{
$error = array('error' => $this->upload->display_errors());
echo '<pre>'; print_r($error); echo '</pre>';
//$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data('quotefile'));
$this->load->view('upload_success', $data);
}