1. ホーム
  2. php

[解決済み] Google reCAPTCHA - `incorrect-captcha-sol` が表示され続ける。

2022-02-19 10:10:12

質問

自分のサイトに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では、このようにCAPTCHAを挿入しています。

<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>

何か間違ったことをしているとは思えないのですが、何かご教示いただければ幸いです。

解決方法は?

私はこれを解決しました、それは私が遭遇した最も珍しいものの一つです、私のシンタックスは以前でした。

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

これに変更しました。

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

このスイッチのため、突然 recaptcha_response_fieldrecaptcha_challenge_field はフォームに値を戻しています。

なぜなら、すべてのMYフォーム変数がスイッチの前にポストバックされたからです。

皆様、ご指摘ありがとうございました。