RE: Hiding email address from spiders

2011-10-14 Thread Jenny Gavin-Wear
ctober 2011 00:39 >>To: cf-talk >>Subject: Fwd: Hiding email address from spiders >> >> >> >>> > How about the "honeypot" method >>> > Anyone have any experience with this highly efficient, >>> >>> I have used it an

Fwd: Hiding email address from spiders

2011-10-14 Thread Dave Watts
> > How about the "honeypot" method > > Anyone have any experience with this highly efficient, > > I have used it and several others like it such as naming a hidden form field > emailaddress and  tracking cookies from page to page and other methods and > it does reduce automated bots but does not

Re: Hiding email address from spiders

2011-10-14 Thread Rob Voyle
Hi Al I agree that many captchas are miserable unreadable and discouraging. My web site and web skills are pretty low tech. I created the captcha on my site in a graphics program 8 or 9 years ago when I became inundated with spam from my contact page. My captcha doesn't change, it is one simp

RE: Hiding email address from spiders

2011-10-14 Thread UXB
How about the "honeypot" method >> Anyone have any experience with this highly efficient, I have used it and several others like it such as naming a hidden form field emailaddress and tracking cookies from page to page and other methods and it does reduce automated bots but does not elimina

Re: Hiding email address from spiders

2011-10-13 Thread Claude Schnéegans
>>Can you describe using an onclick event a little more? Here is a example: function validateForm(b) { var NewInput = document.createElement("input" ); NewInput.setAttribute('name','validateForm'); NewInput.setAttribute('type','hidden'); b.form.appendChild(NewInput); b.form.su

RE: Hiding email address from spiders

2011-10-13 Thread Bobby Hartsfield
The onclick sounds pretty cool. I never thought to do it like that. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >The bot doesn't realize the field is hidden

RE: Hiding email address from spiders

2011-10-13 Thread Bobby Hartsfield
eal people. It has worked well for me in the past. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Thursday, October 13, 2011 8:58 AM To: cf-talk Subject: RE: Hiding ema

RE: Hiding email address from spiders

2011-10-13 Thread Rick Faircloth
I didn't know about the IP addresses part. I'm going to be implementing the feature with that. I don't see the IP address relevance at this point. You've almost certainly have read more about the approach than I have. Can you describe using an onclick event a little more? Such as, when what is

Re: Hiding email address from spiders

2011-10-13 Thread Claude Schnéegans
>>The bot doesn't realize the field is hidden and puts something in it. Check the field when the form is submitted for the presence of a value in the field. OK, I see. But there is no guaranty the bot will fill the field. I prefer the reverse : add a field in a onclick event and check for the

RE: Hiding email address from spiders

2011-10-13 Thread Rick Faircloth
I can't find a reference on www.meetup.com/coldfusionmeetup to the archived presentation, but the basic idea is this: Add a hidden form field that a user can't see, and therefore, won't fill in, and use it to trap a bot/spider. The bot doesn't realize the field is hidden and puts something in it

Re: Hiding email address from spiders

2011-10-13 Thread Matt Quackenbush
http://www.google.com/#hl=en&cp=6&gs_id=m&xhr=t&q=honeypot On Thu, Oct 13, 2011 at 7:32 AM, <> wrote: > > >>How about the "honeypot" method that was presented > on CFMeetup a few months ago? > > Never heard of it. Any reference ? > > ~~~

Re: Hiding email address from spiders

2011-10-13 Thread Claude Schnéegans
>>How about the "honeypot" method that was presented on CFMeetup a few months ago? Never heard of it. Any reference ? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?

RE: Hiding email address from spiders

2011-10-12 Thread Rick Faircloth
How about the "honeypot" method that was presented on CFMeetup a few months ago? I was planning to implement that method. Users don't even know it's working. Any drawbacks? Rick -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >That is a nice captc

Re: Hiding email address from spiders

2011-10-12 Thread Claude Schnéegans
>>getAddress () I mean getMail () ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/

Re: Hiding email address from spiders

2011-10-12 Thread Claude Schnéegans
>>That is a nice captcha.. most of them are so hard for people to read that it discourages some people. You've got a point. Never forget that a Web site is first intended to be comfortable for the visitor, not for the programmer. With a captcha, the programmer can sleep quietly, but the visitor

Re: Hiding email address from spiders

2011-10-12 Thread Al Musella, DPM
That is a nice captcha.. most of them are so hard for people to read that it discourages some people, and I am dealing with people who have brain tumors. What my form does is ask the simple question: is this brain tumor related. Defaults to no. If they don't change it to yes before submittin

Re: Hiding email address from spiders

2011-10-11 Thread Mary Jo Sminkey
>I had the same problem.. what I did is store the email addresses in >a database and then replace the email link with a link to a feedback >form on your website. When people want to email someone, they click >the link, fill out and submit the form. They never get to see the >actual email addre

Re: Hiding email address from spiders

2011-10-11 Thread Raymond Camden
/ > > Has worked for me for years ;-) > > Sebastiaan Naafs - van Dijk > = > So long and thanx 4 all the fish > > ==> Onlinebase.nl > >> To: cf-talk@houseoffusion.com >> Subject: Re: Hiding email address from spiders >> D

RE: Hiding email address from spiders

2011-10-11 Thread Sebastiaan GMC van Dijk
Or just use CFFormProtect @ http://cfformprotect.riaforge.com/ Has worked for me for years ;-) Sebastiaan Naafs - van Dijk = So long and thanx 4 all the fish ==> Onlinebase.nl > To: cf-talk@houseoffusion.com > Subject: Re: Hiding email address fro

Re: Hiding email address from spiders

2011-10-10 Thread Rob Voyle
Hi Al I replaced all email addresses with a coldfusion email form and then started getting a bunch of automated spam. Putting in an image based challenge that the sender must manually replicate stopped all the spam dead. The form is at http://www.clergyleadership.com/email.cfm Rob > > I h

RE: Hiding email address from spiders

2011-10-08 Thread Bobby Hartsfield
You're welcome. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Saturday, October 08, 2011 2:41 PM To: cf-talk Subject: RE: Hiding email address from sp

RE: Hiding email address from spiders

2011-10-08 Thread Al Musella, DPM
I had the same problem.. what I did is store the email addresses in a database and then replace the email link with a link to a feedback form on your website. When people want to email someone, they click the link, fill out and submit the form. They never get to see the actual email address.

RE: Hiding email address from spiders

2011-10-08 Thread Jenny Gavin-Wear
What a strange assumption to make. Jenny Gavin-Wear Fast Track Online Tel: 01262 602013 http://www.fasttrackonline.co.uk/ >>-Original Message- >>From: Michael Grant [mailto:mgr...@modus.bz] >>Sent: 08 October 2011 15:15 >>To: cf-talk >>Subject: Re: Hid

RE: Hiding email address from spiders

2011-10-08 Thread Bobby Hartsfield
In which case ascii encoding would make them feel better about themselves because they don't know any better. ;-) .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans

Re: Hiding email address from spiders

2011-10-08 Thread Claude Schnéegans
>> if someone submits some text to their own site that they know is going to be displayed and it has email addresses in it, they probably don't care much about the subject. May be they do care, but they just don't know how to hide their address. And there are also all those who do care and do no

Re: Hiding email address from spiders

2011-10-08 Thread Michael Grant
> > In all honesty though, if someone submits some text to their own site that > they know is going to be displayed and it has email addresses in it, they > probably don't care much about the subject. > Too right. ~| Order the

RE: Hiding email address from spiders

2011-10-08 Thread Bobby Hartsfield
al Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Saturday, October 08, 2011 8:34 AM To: cf-talk Subject: Re: Hiding email address from spiders This may be academic, but be aware that this method isn't actually hiding the address, simply ascii encoding it. It wouldn't surp

Re: Hiding email address from spiders

2011-10-08 Thread Michael Grant
would be a lot faster? > > > > > > > > #listgetat(mystring, I, " ")# > > > > > #mynewString# > > > > Jenny Gavin-Wear > Fast Track Online > Tel: 01262 602013 > http://www.fasttrackonline.co.uk/ > > > >&

RE: Hiding email address from spiders

2011-10-08 Thread Bobby Hartsfield
; } .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Saturday, October 08, 2011 5:40 AM To: cf-talk Subject: RE: Hiding email address from spiders Thank

RE: Hiding email address from spiders

2011-10-08 Thread Jenny Gavin-Wear
gt;>Sent: 08 October 2011 04:09 >>To: cf-talk >>Subject: RE: Hiding email address from spiders >> >> >> >>Here is a page with an example of the source: >> >>http://cf4em.com/cf4em/index.cfm?mainaction=posts&forumid=2&threadid=63 >

RE: Hiding email address from spiders

2011-10-07 Thread Bobby Hartsfield
rtsfield http://acoderslife.com http://cf4em.com -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: Friday, October 07, 2011 11:04 PM To: cf-talk Subject: RE: Hiding email address from spiders I wrote this a while back f

RE: Hiding email address from spiders

2011-10-07 Thread Bobby Hartsfield
il.com')#"> #disguiseemail('some...@email.com')# .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Friday, October 07, 2011 9:09 PM To: cf-talk Subje

Re: Hiding email address from spiders

2011-10-07 Thread Dan Baughman
I like to place the href attribute of the a tag via javascript using html entities and such. On Fri, Oct 7, 2011 at 7:09 PM, Jenny Gavin-Wear < jenn...@fasttrackonline.co.uk> wrote: > > I have a client using a CMS I've built and they are using a lot of email > addresses in the content. > > As I

Re: Hiding email address from spiders

2011-10-07 Thread Michael Grant
I think the best way is to likely replace them with an image of the email address. cfimage could do it I'm sure. On Fri, Oct 7, 2011 at 9:09 PM, Jenny Gavin-Wear < jenn...@fasttrackonline.co.uk> wrote: > > I have a client using a CMS I've built and they are using a lot of email > addresses in t

Hiding email address from spiders

2011-10-07 Thread Jenny Gavin-Wear
I have a client using a CMS I've built and they are using a lot of email addresses in the content. As I can search/replace content, I am wondering what is the best way to "hide" them from the spiders? tia, Jenny Gavin-Wear Fast Track Online Tel: 01262 602013 http://www.fasttrackonline.co.uk/