2014-10-14, 02:34 AM
reCaptcha not work if use SSL (HTTPS)
Solution:
in line 141 of class_captcha.php
should be:
Solution:
in line 141 of class_captcha.php
$this->server = "http://www.google.com/recaptcha/api";
$this->secure_server = "https://www.google.com/recaptcha/api";
should be:
$this->server = "//www.google.com/recaptcha/api";
$this->secure_server = "//www.google.com/recaptcha/api";