De repente ha dejado de funcionar la imagen del captcha que viene por defecto en el componente JCommets. No sé por qué, pero he encontrado la salución aquí: http://premius.net/blog/web-design/101-how-to-fix-jcomments-captcha-image-not-showing.html
Implica editar el código de un fiecho del componente.
- Open file /administrator/components/com_jcomments/admin.jcomments.php
- Find line:
$lists["captcha"] = JCommentsHTML::selectList($captcha, 'cfgcaptchaengine',
'class="inputbox"' . $disabledCAPTCHA, 'value', 'text',
$config->get('captcha_engine'));
and replace with:
$lists["captcha"] = JCommentsHTML::selectList($captcha, 'cfgcaptchaengine',
'class="inputbox"' . $disabledCAPTCHA, 'value', 'text',
$config->get('captcha_engine', 'kcaptcha'));
- Save changes in file
- Open JComments settings and re-save current settings
- Finish