Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
CAPTCHA errors
I installed CAPTCHA 0.2.0 and I get this error message:
Notice: Undefined index: CAPTCHA_ON in /home/digital/public_html/extensions/CAPTCHA/default.php on line 27
any ideas?
Also, I need a COPPA agreement of some sort, anyone know of an addon/extension or anyway to add a COPPA disclaimer to the registration process?
0
This discussion has been closed.
Comments
Check again vanilla/conf/settings.php. If there is still no Configuration['CAPTCHA_ON'] check the permissions of on vanilla/conf/settings.php.
Do you have the GD 2.0.1 and the FreeType libraries intalled?
<?php phpinfo(INFO_MODULES);?>
Once you have checked if GD and FreeType are installed delete the file
@ rkrizan: Let me know if it doesn't fix your problems.
Undefined index: CAPTCHA_ON in /home/chrisleg/public_html/forum/extensions/CAPTCHA/default.php on line 27
Update: After removing all of the $Configuration['CAPTCHA_* portions, like suggested, I get the following error and I am unable to access the forums at all...
Error Message
Could not Add the CaptchaDisableDescription field to the User table
Affected Elements
CAPTCHA Installer.OpenConnection();
The error occurred on or near: Duplicate column name 'CaptchaDisableDescription'
You have to delete the CaptchaDisableDescription column in the user table
You can try the last version 0.2.1a (You still have to delete CaptchaDisableDescription from the user table first)
Check that CaptchaDisableDescription is in the database (If you installed the extension manually or if the colomn hasn't been installed, the query is ALTER TABLE `LUM_User` ADD `CaptchaDisableDescription` TEXT;)
If it is there, check that CAPTCHA/conf/database.php look like that:
<?php // Database tables and columns $Context->DatabaseColumns['User']['CaptchaDisableDescription'] = 'CaptchaDisableDescription'; ?>
You can try to had $DatabaseColumns['User']['CaptchaDisableDescription'] = 'CaptchaDisableDescription';
into vanilla/conf/database.php.
Thanks for all the help...