Lots of problems with captcha in the dolphin software. I've removed the captcha in the registrations process, but in the Contact Us page it wount disappear.
Any knowlege how to remove captcha in the contact us page? I'v tryed to set required to "false", but it does not help at all.
Any one?
|
Is there no help to get at all to completely removing the captcha from the whole system? If not, the whole dolphin software is totaly useless.
Joomla 1.5 and Jomsocial 2.6.290 wil do much better?
Any one who can help resolving this problem please?
|
To remove the captcha :
Open contact.php
Find and remove this block of code :
'captcha' => array( 'type' => 'captcha', 'caption' => _t('_Enter what you see:'), 'name' => 'securityImageValue', 'required' => true, 'checker' => array( 'func' => 'captcha', 'error' => _t( '_Incorrect Captcha' ), ), ),
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
You do know Modzzz that it would be helpful if you stopped into the dispute forum and gave your input on the discussion going on over there. I'd greatly appreciate it and I think others might also. |
Thanks but I've figured it out last night, I could not sleep, so i vent programming..:)
|
you can do the same thing in the forgot.php where captcha is a problem too.
array( 'type' => 'captcha', 'name' => 'captcha', 'caption' => _t('_Enter Captcha'), 'required' => true, 'checker' => array( 'func' => 'captcha', 'error' => _t( '_Incorrect Captcha' ), ), ),
remove the whole text, then the new password retriving will work..
|
This is very helpful guys , thank you so much . But another question but so important matter like captcha is not available in admin panel to disable it or enable it ?
All the best M
|
if you have set the keys in advanced settings / security then you can enable and disable it in profile fields. If you don't want the captcha remove it from the join form, plonk it back if you want to re-enable it. |