dtq7387 2014-12-24 03:36
浏览 145
已采纳

在codeigniter上使用ajax验证recaptcha的invalid-request-cookie

thanks for reading my question, i have some issues trying to validate a recaptcha, with codeigniter with jquery ajax method, i always get invalid-requste-cookie, here is part of my code

Part of "welcome" controller

public function anunciese() 
    {
        $data['recaptcha_html'] = $this->recaptcha->recaptcha_get_html();
        $data['main_content'] = 'welcome/anunciese';
        $this->load->view('includes/'.$this->config->config["tema"].'/template' , $data);
    }

    public function validar_recaptcha()
    {
        $this->recaptcha->recaptcha_check_answer(
                    $_SERVER['REMOTE_ADDR'],
                    $this->input->post('recaptcha_challenge_field'),
                    $this->input->post('recaptcha_response_field'));
        if ($this->recaptcha->getIsValid() == false) 
        {
            $datos['success'] = false;
            $datos['titulo'] = "ERROR";
            $datos['mensaje'] = $error = $this->recaptcha->getError(); 
        } 
        else 
        {
            $datos['success'] = true;
            $datos['titulo'] = "";
            $datos['mensaje'] = "";
        }
        echo json_encode($datos);
    }

Here is the view (part of It)

<form class="form-horizontal" method="post">
  <fieldset>
    <div class="form-group">
      <label for="inputEmail" class="col-lg-2 control-label">Email</label>
      <div class="col-lg-10">
        <input class="form-control" id="inputEmail" placeholder="Email" type="text">
      </div>
    </div>
    <div class="form-group">
      <label for="inputNombre" class="col-lg-2 control-label">Nombre</label>
      <div class="col-lg-10">
        <input class="form-control" id="inputNombre" placeholder="Nombre" type="text">
      </div>
    </div>

    <div class="form-group">
        <?php echo $recaptcha_html; ?>
    </div>

    <div class="form-group">
        <input type="button" class="btn btn-primary" value="Suscribirme Gratis" onClick="SalvarProspecto()" />
    </div>

And finally my js code

function ValidarRecaptcha()
    {
        var phpencode = true;
        var urlx = base_url + 'welcome/validar_recaptcha';
        $.ajax({
        type: "POST",
        url: urlx,
        data: {},
        async: false,
        success: function (data) {
            if (phpencode == true) {
                data = $.parseJSON(data);   
            }
            console.log(data) //Solo para propositos de debug
            if (data.success) {
                return true;
            } else {
                return false;
            }
        },
        error: function (xhr, ajaxOptions, thrownError) {
            alert("Failed " + urlx);
            alert(xhr.responseText);
            alert(thrownError);
        }
    });
    }

I am using this library https://github.com/Cnordbo/RECaptcha-for-Codeigniter

Any help would be appreciated

  • 写回答

1条回答 默认 最新

  • douyiqi9640 2015-01-02 20:36
    关注

    Just made it without ajax requests, and making it a basic form, with the form helper, and the codeigniter documentation here, like that example https://github.com/Cnordbo/RECaptcha-for-Codeigniter

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥170 如图所示配置eNSP
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果