Oct 8th, 2011, 8:10 AM
(This post was last modified: Oct 8th, 2011, 9:58 AM by designandetc.)
Ben,
I upgraded to the latest version of Formtools (2.1.3) and the latest version of the Submission Pre-Parser module (1.1.1) and after creating a couple rules, the spam has stopped!
First:
I am using the "formtools_ignore_submission" key.
Here is my rule:
I upgraded to the latest version of Formtools (2.1.3) and the latest version of the Submission Pre-Parser module (1.1.1) and after creating a couple rules, the spam has stopped!
First:
I am using the "formtools_ignore_submission" key.
Here is my rule:
PHP Code:
<?php
if (!empty($_POST["name"]))
$_POST["form_tools_ignore_submission"] = true;
My "honeypot" field is coded like this:
PHP Code:
<?php
<div class="honey">
<input type="text" name="name" value="">
</div>
.honey{display:none;}
