现在第一次使用codeigniter,并尝试他们描述的上传文件类here。现在发生的事情很奇怪,因为一旦我提交了选择了图像的表单,它就会显示错误404,这是可以理解的,因为某些原因地址栏中显示的url原来是:
http://mydomain.com/index.php/www.mydomain.com/index.php/do_upload
所以它正在重复!这导致404的问题,但我不知道它为什么会发生?
用于控制器的代码是:
<?php
class Upload extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
//form_upload('userfile');
}
function index()
{
$this->load->view('upload_form', array('error' => ' ' ));
}
function do_upload()
{
$config['upload_path'] = '/uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
}
?>
感谢支持:)
编辑:提交表格:
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<input type="file" name="userfile" size="20" />
<br /><br />
<input type="submit" value="upload" />
</form>
</body>
</html>
答案 0 :(得分:1)
此问题的答案是在配置文件的基本URL中的域地址之前添加http://。这解决了这个问题。谢谢大家
答案 1 :(得分:0)
该错误可能在您的上传表单中。如果操作不是相对网址,或以http://
开头,例如你指定了“www.mydomain.com/index.php/do_upload”作为动作,你将得到这种行为。
要修复,请先添加“http://”或创建相对网址。
答案 2 :(得分:0)
试试这个:
<?php echo form_open_multipart('/upload/do_upload');?>
在'上传'之前不是'/'