Codeigniter错误的验证码图片src

时间:2019-02-24 16:20:34

标签: php codeigniter codeigniter-3

嗨,我正在尝试将CodeIgniter验证码帮助程序用于我的注册页面。 我有一个具有如下注册功能的用户控制器:

public function register(){   
    $this->form_validation->set_rules('user_name' , 'Username' , 'trim|required|max_length[32]'); 
    $this->form_validation->set_rules('captcha' , 'Captcha' , 'trim|required|max_length[32]|callback_check_captcha');
    $this->form_validation->set_rules('password', 'Password','trim|required|min_length[5]|max_length[12]');
    $this->form_validation->set_rules('confirm_password', 'Confirm Password','trim|required|min_length[5]|max_length[12]|matches[password]');
    $this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email');
    if ($this->form_validation->run()==FALSE){
    //Captcha code 
    $this->load->helper('captcha');
    //Captcha Config 
    $vals = array(
        'img_path'      => './captcha/',
        'img_url'       => './captcha/',
        'img_width'     => '150',
        'img_height'    => 30,
        'expiration'    => 7200,
        'word_length'   => 8,
        'font_size'     => 16,
        'img_id'        => 'Imageid',
         'font_path'     => '/fonts/Open.ttf',

        // White background and border, black text and red grid
        'colors'        => array(
                'background' => array(255, 255, 255),
                'border' => array(255, 255, 255),
                'text' => array(0, 0, 0),
                'grid' => array(255, 40, 40)
        )
    );
    //Create the Captcha
    $cap = create_captcha($vals);

    // Store The Created Captcha in DB for Verification  
    $data = array(
    'captcha_time'  => $cap['time'],
    'ip_address'    => $this->input->ip_address(),
    'word'          => $cap['word']
    );
    $this->register_model->store_captcha($data);
    //Load View
    $data['image']=$cap['image'];
    var_dump($data['image']);exit();
    $this->load->view('templates/header');
    $this->load->view('register' , $data);
    $this->load->view('templates/footer');
    }else {
              $option=array('cost'=>12);
              $encrypt_password=password_hash($this->input->post('password'),PASSWORD_BCRYPT,$option);
              $this->register_model->add_user($encrypt_password);
              $this->session->set_flashdata('user_registered','You are Successfully Registered and can Log in ');
              redirect('register/success');
    }
}

如果看到上面的代码,则将'img_path'设置为'./captcha/'(使用root相对方法)。我的根文件夹中有此验证码。

我认为:

    <div class="form-group">
    <label>Enter UserID</label>
    <input type="text" class="form-control" name="user_name"  placeholder="Enter Your UserId">
  </div>
  <div class="form-group">
    <label>Enter Your Email</label>
    <input type="email" class="form-control" name="email"  placeholder="Enter Your Email">
  </div>
  <div class="form-group">
    <label>Enter Your Password </label>
    <input type="password" class="form-control" name="password"  placeholder="Enter Password">
  </div>
  <div class="form-group">
        <label>Re-enter Password </label>
        <input type="password" class="form-control" name="confirm_password"  placeholder="Renter Password">
  </div>
  <?php echo $image ; ?>
  <div class="form-group">
        <label>Solve Captcha </label>
        <input type="text" class="form-control" name="captcha" >
  </div>
   <button type="submit" class="btn btn-primary">Submit</button>
  <?php echo form_close();?>

问题是我的图像没有显示出来。当检查验证码图像时,我发现它是正确的,如下所示:

<img id="Imageid" src="./captcha/1551023447.5228.jpg" style="width: 150; height: 30; border: 0;" alt=" ">

但是,src实际上已被“计算”为:http://[::1]/login/user/captcha/1551023447.5228.jpg。请参见下图。

computed src

有人可以告诉我src为什么指向http://[::1]/login/user/captcha/1551023447.5228.jpg,尽管它应该是http://[::1]/login/captcha/1551023447.5228.jpg吗?我也很好奇,想知道将鼠标悬停在chrome中的img src上如何显示与代码中实际值不同的值。我知道/.path用于从根目录遍历文件夹,但这是我第一次在chrome中看到类似的内容。谢谢 。

1 个答案:

答案 0 :(得分:1)

路径参数看起来不正确。它应该是验证码目录的完整URL,例如

$vals = array(
    'img_path'      => 'captcha/',
    'img_url'       => base_url('captcha')
.....

假设您在项目根目录中有一个captcha目录,那么您还在url中启用了config/autoload.php帮助程序

关于chrome dev工具路径,它会计算显示完整URL的相对路径,以便您可以单击一下。