Jul 18th, 2012, 12:44 PM
(Jul 20th, 2011, 2:07 AM)terry54661 Wrote:Quote:Found an answer to my own question inside recaptchalip.php! Smile
function recaptcha_get_html ($pubkey, $error = null, $use_ssl = true)
Doing the above also sorts out the issue with SSL but now the recaptcha does not display.
Any ideas about why this happens would be great.
Terry
Probably far too late to help this user but the last problem noted is because Google have changed the recaptcha secure server URL, and this needs to be updated in /global/api/recaptchalib.php
change line 39 from ...
define("RECAPTCHA_API_SECURE_SERVER", "https://api-secure.recaptcha.net");
to ...
define("RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");
and all should be well.