btw, the problem is that curl return
SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
So you’re having the issue in your local dev only? You said it was not working on both sites, but now it’s ok on the live site ? Did you change anything to make it work on the live site?
I’ve updated to 2.0.2 to make it work on live site.
Actually now I think it’s not a BPW reCaptcha bug, but some problem with curl and ssl on my local server/php.
For now I’ve just removed ssl check in curlpost.php
I also met the same problem with 2.0.2:
Unknown error (invalid-json). Please contact an administrator for more info.
After I update my php from 5.3.3 to 5.6.16 on my iis7.5 2008 R2 server.
If I back to php 5.3.3 it will ok but it will get problem when I use php 5.6.16.
So i also open the file curlpost.php and changed the line 79# from CURLOPT_SSL_VERIFYPEER => ture
to
CURLOPT_SSL_VERIFYPEER => false,
and then it can run very well on php5.6.16.
But I guess it is a potential problem there.
you Can sovled problem like this:
download cacert.pem from http://curl.haxx.se/docs/caextract.html
put cacert.pem to d:\something\cacert.pem
put curl.cainfo = “D:\servercore\cacert.pem” into php.ini
then you can change CURLOPT_SSL_VERIFYPEER goback to ture
Hello,
Can you guys try again with version 2.0.3? It should work now.
Thanks.