https://github.com/magento-hackathon/HoneySpam
Spam protection module for customer registration, product review form and contact form.
https://github.com/magento-hackathon/HoneySpam
Last synced: about 1 month ago
JSON representation
Spam protection module for customer registration, product review form and contact form.
- Host: GitHub
- URL: https://github.com/magento-hackathon/HoneySpam
- Owner: magento-hackathon
- License: osl-3.0
- Created: 2012-10-27T09:37:55.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-03-23T20:15:26.000Z (about 2 years ago)
- Last Synced: 2024-11-04T11:38:47.042Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 121 KB
- Stars: 102
- Watchers: 70
- Forks: 36
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-openmage - HoneySpam
README
# About Hackathon Magento Honey Spam
This Magento Extension adds a field which is hidden with JavaScript to the Customer Register and the Product Review Form
which looks like the URL Field of a Wordpress Comment Form. If this field gets filled and the Form is send, there
appears a error message and nothing will be saved.There is also a check if this form is too fast transmitted, a human normally takes a couple of Seconds or more.
You can enable and disable the functionalities or set the time how long it should take to transmit this forms in the
Magento Admin Backend.Freshly added: Regex-checking on all input-fields to determine a loose index for spam-level. It is not the most accurate
thing at all, but it may prevent the low-end spam ("broadband spam"). You also can enable/disable this feature in the
backend and set a maximum spam index trust level.## Compatibility
This module should work on Magento 1.9.x (not tested on previous versions)That said, honeyspam unfortunately doesn't work well anymore, so you might want to look into other alternatives like captchas 🤢
## Installation
### Compiler
Please disable Compiler. In our experience it doens't give performance wins and costs a lot of time while debugging.
### Installation with modman
Clone it within modman via `https://` or `git://`:
modman clone https://github.com/magento-hackathon/HoneySpam.git
modman clone [email protected]:magento-hackathon/HoneySpam.git### Installation without modman
Copy all the files in your magento root directory
### After installation
Clean the cache after installation!
#### Contacts form modifications
Copy the file `app/design/frontend/{base_or_rwd}/default/template/contacts/form.phtml` to your own theme and insert the
codegetChildHtml('form_fields_before') ?>
within the ` ... ` tag.
#### Newsletter Subscription Form Modifications
Copy the file `app/design/frontend/{base_or_rwd}/default/template/newsletter/subscribe.phtml` to your own theme and
insert the codegetChildHtml('form_fields_before') ?>
within the ` ... ` tag.
## Testing
After the Installation you should be able to find a input field with the id="url" in the Customer Register and in the
Product Review Form, which should be hidden with our JS.## Further Information
### Core Contributors
- kortwotze
- Celldweller
- Andreas Emer
- Bastian Ike
- Fabian Blechschmidt
- Sven Reichel### Current Status of Project
Complete and working.
If you found errors or have ideas, [open an issue](https://github.com/magento-hackathon/HoneySpam/issues) on github or a
pull request!