我正在关注本教程,了解如何在我的 cakephp2.2.5 项目中添加 recaptcha。不幸的是,每次我点击提交按钮时,我的控制器中都会出现“invalid-request-cookie”错误。这是我的控制器中的代码
if ($this -> request -> is('post')) {
$url = 'http://www.google.com/recaptcha/api/verify';
$ch = curl_init($url);
$post = array("privatekey" => "...",
"remoteip" => $_SERVER["REMOTE_ADDR"],
"challenge"=>$this->request->data["recaptcha_challenge_field"],
"response" => $this->request->data["recaptcha_response_field"]);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
var_dump($response);
}
如果我不使用 ajax 并使用以下代码
$resp = recaptcha_check_answer ('...',
$_SERVER["REMOTE_ADDR"],
$this->request->data["recaptcha_challenge_field"],
$this->request->data["recaptcha_response_field"]);
我的 $resp 变量中出现了同样的错误。我已经包含了https://www.google.com/recaptcha/api/js/recaptcha_ajax.js。我也有
echo "<div id='recaptcha_div'></div>";
在我的视图文件中。
我已经尝试过
教程,但我得到了更多的错误。所以我求助于简单的教程。任何帮助都会很棒。