为什么google recaptcha没有出现?

时间:2014-09-24 13:17:08

标签: php html recaptcha

我使用google recaptcha,我的表单太简单了,它只会显示google recaptcha,但是它没有显示,没有出现错误,我无法理解是什么问题,这里是我的代码:

<html>

    <body>

        <form method="post" action="contact.php">
            <?php  require_once('recaptchalib.php');
                  $publickey = "6Ld72voSAAAAADku3vUoC712Zo8jUmjHJS8N77Ym"; // you got this from the signup page
                  echo recaptcha_get_html($publickey);
             ?>
        </form>

    </body>

</html>

1 个答案:

答案 0 :(得分:0)

我知道这是一个老问题。但回答是否可以帮助某人。

如果您的验证码使用其他服务器,请尝试将其更改为以下内容。

define("RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api");
define("RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");
define("RECAPTCHA_VERIFY_SERVER", "www.google.com");

它为我解决了Captcha Display问题:)