我试图在我的第一个wordpress主题的评论中避免垃圾邮件,问题是我已经跟随了所有Google PHP API instructions,它显示完美,但验证是错误的,我认为因为我可以在recaptcha中发表评论输入错误的单词。
利用这个问题,我还想知道如何将返回的错误消息与提交按钮一起放入。
这是comments.php表单片段:
<form class="comments-form" action="verify.php" method="post" id="commentform">
...
<?php
require_once('recaptchalib.php');
$publickey = "my_pulic_key";
echo recaptcha_get_html($publickey, $error);
?>
<p>
<input type="submit" name="submit" id="submit" tabindex="5" value="Enviar" />
<label for="submit"><?php echo $error ?></label>
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>
</form>
这是verify.php代码:
<?php
require_once('recaptchalib.php');
$privatekey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; //clave privada
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
if (!$resp->is_valid) {
// What happens when the CAPTCHA was entered incorrectly
$error = $resp->error;
} else {
// Your code here to handle a successful verification
echo "¡Recaptcha correcto!";
//do_action("wp-comment-post.php");??????I DON´T KNOW IF THIS IS OK.
}
?>
编辑:我尝试过使用表单操作“verify.php”,但只将我重定向到空白页面。 哪个是我应该使用的正确行动?
答案 0 :(得分:0)
我发现了错误:
$response = recaptcha_check_answer (...);//<- ?!!
if (!$resp->is_valid) {
首先,变量称为$response
,然后是$resp
。