Google OpenID not working with OpenID plugin in WordPress

前端 未结 5 1930
长发绾君心
长发绾君心 2021-01-14 03:30

The OpenID plugin for WordPress doesn\'t seem to accept either of the Google OpenID provider links:

http://google.com/profiles/username

or<

5条回答
  •  梦谈多话
    2021-01-14 04:04

    I was getting the same error and inspecting apache error logs I got the following

    CURL error (60): SSL certificate problem: unable to get local issuer certificate

    This was being caused by curl calls from the OpenID plugin.

    The following worked for me. Source: https://stackoverflow.com/a/21114601/3826642

    1. Use this certificate root certificate bundle: https://curl.haxx.se/ca/cacert.pem

    2. Copy this certificate bundle on your disk. And use this on php.ini

      curl.cainfo = "path_to_cert\cacert.pem"

    Be sure to restart the server after you make changes.

提交回复
热议问题