17

我正在尝试将 reCAPTCHA 添加到我的网站,但incorrect-captcha-sol在提交答案时不断出错。

谁能告诉我以下操作是否正确?

我有一个通用的 index.php,其中包括 contact.php。在contact.php中,我插入了以下代码:

require_once('recaptchalib.php');
$publickey = "XXXX";
$privatekey = "XXXX";

//the response from reCAPTCHA
$resp = null;
//the error code from reCAPTCHA, if any
$error = null;

if ($_POST['submit']) {
    $message = $_POST['message_txt'];
    $name = $_POST['name_txt'];
    $email = $_POST['email_txt'];
    
    $emailBody = $message;
    $to = 'xx';
    $from = $name.' <'.$email.'>';
    $subject = 'XX Website Enquiry';
    $headers = 'From: '.$from;  
        
    $resp = recaptcha_check_answer($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]);
    
    if ($resp->is_valid) {
        echo 'captcha correct';
        if (mail($to,$subject,$emailBody,$headers)) {
            //echo 'mail sent';
            $confirmation = 'sent';
        }
        else {
            //echo 'mail not sent';
            $confirmation = 'error';
        }
    } else {
        # set the error code so that we can display it. You could also use
        # die ("reCAPTCHA failed"), but using the error message is
        # more user friendly
        
        $error = $resp->error;
        
        echo $error;
    }
}

在我的 html 中,我像这样插入了验证码:

<form name="contactForm" method="post" action="index.php?id=contact&action=submit#contact">
    <tr><td>Name</td><td><div align="right">
        <input type="text" name="name_txt" class="input">
        </div></td></tr>
    <tr><td>Email</td><td><div align="right">
        <input type="text" name="email_txt" class="input">
    </div></td></tr>
    <tr><td height="10"></td></tr>
    <tr><td colspan="2">Message</td></tr>
    <tr><td colspan="2"><textarea name="message_txt" class="textarea" style="width:200px; height:100px"></textarea></td></tr>
    <tr><td colspan="2"><?php echo recaptcha_get_html($publickey, $error); ?></td></tr>
    <tr><td colspan="2" style="padding-top:10px;"><input type="image" src="images/header_06.gif" name="submit" value="submit"></td></tr>
</form>

我看不出我做错了什么,但希望能得到任何帮助。

4

7 回答 7

22

我已经解决了这个问题,这是我遇到的最不寻常的事情之一,我的语法以前是:

<table>
  <form>
    <tr><td></td></tr>
  </form>
</table>

我把它改成这样:

<form>
  <table>
    <tr><td></td></tr>
  </table>
</form>

由于这个开关,突然recaptcha_response_fieldandrecaptcha_challenge_field将值发布回表单。

我想不出为什么会这样,因为我的所有表单变量在切换之前都被发回了。

谢谢大家的指点。

于 2009-08-12T11:58:26.907 回答
15

您是从您的Localhost执行此操作吗?

localhost我通过添加到允许的域以在 google reCaptcha 设置中进行验证来解决此问题

域 reCaptcha 设置

于 2021-06-27T09:31:50.363 回答
9

如果您两次发布支票 - 例如一次来自 javascript,一次通过 php,第二个将失败,因为 API 只允许解决方案返回一次有效。

希望有帮助,乔希

于 2009-08-12T07:43:13.303 回答
5

那是因为表格不能在 tr 的外面......它必须在表格的外面......表格不能插入表格,但可以插入 td。

于 2010-05-08T19:31:56.037 回答
2

就我而言,错误是设置表单而不指定:

方法="发布"

干杯!

于 2010-08-15T10:21:35.163 回答
0

你确定你输入的是正确的单词吗?

这个来自recaptcha网站:

Line 1       "true" or "false". True if the reCAPTCHA was successful
Line 2  if Line 1 is false, then this string will be an error code. reCAPTCHA can 
    display the error to the user (through the error parameter of api.recaptcha.net/challenge).
     Implementations should not depend on error code names, 
as they may change in the future.


    Example: If your response looks like this:

    false
    **incorrect-captcha-sol**

    ... you can add '&error=incorrect-captcha-sol' to the challenge request URL, 
and the user will get an error code.
于 2009-08-12T07:44:01.023 回答
0

在脚本集 php.ini 的根目录中,使用以下命令:

allow_url_fopen = 打开

于 2018-03-26T22:32:15.230 回答