Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I can confirm our versions of curl and libcurl have no problems whatsoever in connecting to Google over https for reCaptcha service.
I took a look at the error message: Call to undefined method GuzzleHttp\Psr7\Response::json() and it me think that you have some legacy code that's meant for an older version of Guzzle. For example, on line 385 of /mnt/data/vhosts/casite-764056.cloudaccess.net/httpdocs/components/com_comprofiler/plugin/libraries/CB/Plugin/AntiSpam/Captcha.php:
$response = $result->json();
"One small side effect of this was the removal of the "::json()" method from the response, as the PSR-7 standard does not define this."
blog.jacobemerick.com/web-development/json-responses-in-guzzle-six/
And there are possible solutions as discussed on this related Stackoverflow post:
stackoverflow.com/questions/30530172/guzzle-6-no-more-json-method-for-responses
Also please note that there could be other calls on the site that are still using the same syntax (calling that undefined method).
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.