Mike
Member since Dec 11, 2008
- Profile: /members/1444-mike.htm
- Comments: 3
Recent Blog Comments By Mike
-
Preventing Spam Bot Form Submissions With ColdFusion (Revisited)
Posted on Sep 10, 2007 at 12:05 AM
Interesting, I have not run into that issue yet.... read more »
-
Preventing Spam Bot Form Submissions With ColdFusion (Revisited)
Posted on Sep 9, 2007 at 6:02 PM
Ben, Understood, but from my sites and using this has stopped about 99% of the bots from hitting my forums. Mike... read more »
-
Preventing Spam Bot Form Submissions With ColdFusion (Revisited)
Posted on Sep 9, 2007 at 5:25 PM
Why not just do something like this? <cfset userAgent = "#CGI.HTTP_USER_AGENT#"> <cfif #find("Mozilla", userAgent)#> <!--- Not a Bot ---> <cfelse> <cflocation url="index.cfm?FuseAction=Main&m=0"> <cfabort> </cfif> Most bots I have seen don't hav... read more »