Diseño y Posicionamiento Web con Joomla › Foros › Joomla! 3.0 › Componentes Joomla 3.0 › Registro y acceso a Joomla 3.2 › Registro y acceso a Joomla 3.2
Ciao
Y si desaparece el recaptcha abrir plugins/captcha/recaptcha/recaptcha.php
Linea 24 reemplazar
[code type=php] const RECAPTCHA_API_SERVER = “http://api.recaptcha.net”;[/code]
con
[code type=php] const RECAPTCHA_API_SERVER = “http://www.google.com/recaptcha/api”;[/code]
Linea 26 reemplazar
[code type=php] const RECAPTCHA_VERIFY_SERVER = “api-verify.recaptcha.net”;[/code]
con
[code type=php] const RECAPTCHA_VERIFY_SERVER = “www.google.com”;[/code]
Linea 118 reemplazar
[code type=php] $response = $this->_recaptcha_http_post(self::RECAPTCHA_VERIFY_SERVER, “/verify”,[/code]
con
[code type=php] $response = $this->_recaptcha_http_post(self::RECAPTCHA_VERIFY_SERVER, “/recaptcha/api/verify”,[/code]