At 09:04 AM 12/11/2004, Mike Kear wrote: >I dont need to hassle with captcha stuff - that's only going to make >it harder for legitimate customers to order
It doesn't have to be TOO hard. I use one with no backgrounds, just a cross fade and a little squiggling. Take a look: http://rsvptracker.com/person-new.cfm It's definitely a "low strength" captcha, since I doesn't mess with the background. Code is super easy: <CFSET randomWord=""> <CFLOOP index = "i" from="1" to="4"> <CFSET randomWord="#randomWord##chr(65+RandRange(0,25))#"> </CFLOOP> <CFSET filename="#createUUid()#"> <CFFILE action="APPEND" file="#gBaseDirectory#captchas\#filename#.txt" output="#randomWord#" addNewLine="Yes"> <cfx_captcha height="70" width="300" background_image="" text="#randomWord#" outfile="#gBaseDirectory#captchas\#filename#.jpg" font="Arial" font_color="white" fontsize="50" distortion_method="1" font_opacity="80" quality="80" bgcolor1="##ff0000" bgcolor2="##0000ff"> <CFOUTPUT> <INPUT type="hidden" name="captchaFilename" value="#filename#"> and so on.... >But what's the point for the spammer of doing it? Yes, that's still quite a mystery! Anders +===========================================================+ |Anders Green Email: [EMAIL PROTECTED] | | Home: 919.303.0218 | | Off Road Rally Racing Team: http://LinaRacing.com/ | |Do you like Evite? This is better: http://RSVPtracker.com/ | +===========================================================+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187229 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

