谷歌重新开始在我的网站上工作,但在其他网站上工作

时间:2016-12-13 10:03:13

标签: php recaptcha

2 个答案:

答案 0 :(得分:0)

似乎未启用openssl扩展程序。您需要在php.ini添加以下行。

适用于Windows

extension=php_openssl.dll

对他人

extension=openssl.so

注意

不要忘记在更新php.ini

后重启Apache

更新1

$url= 'https://example.com';

$arrContextOptions=array(
      "ssl"=>array(
            "verify_peer"=>false,
            "verify_peer_name"=>false,
        ),
    );  

$response = file_get_contents($url, false, stream_context_create($arrContextOptions));

这将允许您从网址获取内容,无论它是否为HTTPS

答案 1 :(得分:0)

您应该检查open_ssl扩展程序以查看它是否已启用,然后重新检查Google API密钥以查看Google是否允许您在您的域中使用。