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 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同