1

如标题中所述。我的recaptcha 表单仅在我更改此设置时才有效:

define("RECAPTCHA_VERIFY_SERVER", "www.google.com");

对此:

define("RECAPTCHA_VERIFY_SERVER", "74.125.236.178");

我正在使用myhosting.com vps linux 服务器。知道为什么它不适用于www.google.com吗?

4

1 回答 1

1

解决这个问题的是,

//line 40 in recpatchalib.php and replace:
define("RECAPTCHA_VERIFY_SERVER", "api-verify.recaptcha.net");

// With this:
define("RECAPTCHA_VERIFY_SERVER", gethostbyname('api-verify.recaptcha.net'));

尝试一下。

问题页面获得。

于 2013-01-03T05:02:05.890 回答