为什么我得到错误502

时间:2012-03-30 15:05:33

标签: php codeigniter frameworks

我正在使用codeIgniter

public function add()
{

    if(!$this->session->userdata('id') || !$this->session->userdata('email'))
    {
        echo "please enter before";
        exit();
    }
    $user_id = $this->session->userdata('id');
    $organization = $this->input->post('organization');
    $adress = $this->input->post('adress');
    $responsable = $this->input->post('responsable');
    $doljnost = $this->input->post('doljnost');
    $rab_tel = $this->db->escape($this->input->post('rab_tel'));
    $mob_tel = $this->db->escape($this->input->post('mob_tel'));
    $desc = $this->db->escape($this->input->post('desc'));
    $uslovia = $this->db->escape($this->input->post('uslovia'));
    $ocobennosti = $this->db->escape($this->input->post('ocobennosti'));
    $coupons = $this->input->post('coupons');
    $discount = $this->input->post('discount');
    $category = $this->input->post('category');
    $days = $this->input->post('days');


    if(empty($discount) || empty($adress) || empty($mob_tel) || empty($discount))
    {
        $this->session->set_flashdata('error', 'fill the inputs');
        $data['content'] = $this->load->view('user_add', null, true);
        $this->load->view('layout', $data);
    }
    else
    {
                $this->db->query('INSERT INTO user_adds (`organization`, `adress`,
                `responsable`, `doljnost`, `rab_tel`,
                `mob_tel`,`desc`, `uslovia`, `ocobennosti`, `coupons`, `category`, `end`, `user_id`) VALUES
                ("'.$organization.'", "'.$adress.'", "'.$responsable.'",
                "'.$doljnost.'", "'.$rab_tel.'", "'.$mob_tel.'",
                "'.$desc.'", "'.$uslovia.'", "'.$ocobennosti.'",
                "'.$coupons.'", "'.$category.'", NOW() + INTERVAL '.$days.' DAY, "'.$user_id.'")');
            redirect('/');
    }
}

执行此方法后,当我传递到另一个页面时,它会显示此错误

502 Bad Gateway

服务器返回无效或不完整的回复。

我做错了什么?

会话库是自动加载的,我只是传递给这个方法而且提交

并不是必须的。

1 个答案:

答案 0 :(得分:1)

你刚刚把局部变量和插入到mysql db中。从未接触过调用HTTP(客户端)或接受HTTP(服务器)的内容。

似乎与HTTP有关的唯一事情是调用名为redirect的本地函数。 可能是问题所在。

502 Bad Gateway通常在向后端服务器的本地HTTP传递失败时由反向代理返回。 尝试注释掉重定向(“/”)以查看会发生什么