- Marijn Kampf (Nickname: marijnkampf)
http://www.exadium.com/tools/silverstripe/modules/invisible-spam-protection-module/
Sponsored by Exadium Web Development
Very simple anti spam protection based on principle that automated spammers enter bogus information in all form fields.
Field is added to form that is hidden using CSS hiding it from human users.
Form is only allowed to be submitted if field is empty.
Includes an EditableInvisibleSpamField to integrate with the UserForms module.
- Spam Protection
- SilverStripe 3.#
The Spam Protection Module (http://silverstripe.org/spam-protection-module) provides the basic interface for managing the spam protection. If your are not using composer to manage your dependencies , you have to install this module manually.
Add this to your composer.json:
{
"require": {
"marijnkampf/InvisibleSpamProtection": "dev-master"
}
}
or execute the following command
php composer.phar require "marijnkampf/InvisibleSpamProtection": "dev-master"
After that execute
php composer.phar update "marijnkampf/InvisibleSpamProtection"
to install the module. If you have set your minimum-stability to stable, you may need to install the spam-protection-module explicitly:
php composer.phar require "silverstripe/spamprotection": "1.0.x-dev"
php composer.phar update
Download the module and extract it, into a folder which should be named InvisibleSpamProtection.
Enable anti spam in mysite/_config.php by adding line
SpamProtectorManager::set_spam_protector('InvisibleSpamProtector');