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 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧