Re: Prevent users from voting twice.

2008-02-29 Thread Tom Chiverton
On Thursday 28 Feb 2008, Ben Doom wrote: You can never completely eliminate the possibility of someone voting early and voting often Not without physical devices, no. -- Tom Chiverton Helping to simultaneously brand integrated segments on: http://thefalken.livejournal.com

Re: Prevent users from voting twice.

2008-02-29 Thread Tom Chiverton
On Thursday 28 Feb 2008, Porter, Benjamin L. wrote: It is hard to automate reading captcha. Or not. -- Tom Chiverton Helping to seamlessly promote sticky methodologies on: http://thefalken.livejournal.com This email is sent for and on

Re: Prevent users from voting twice.

2008-02-29 Thread Ben Doom
What's to stop someone from stealing/hacking/gaining from friends physical devices? I think we're down to fingerprints, DNA scans, and retinal imaging. But your point is taken. :-) --Ben Doom Tom Chiverton wrote: On Thursday 28 Feb 2008, Ben Doom wrote: You can never completely eliminate

RE: Prevent users from voting twice.

2008-02-29 Thread Bobby Hartsfield
and from there it gets messy and involves sharp objects. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Friday, February 29, 2008 9:39 AM To: CF-Talk Subject: Re: Prevent users from voting twice

Prevent users from voting twice.

2008-02-28 Thread George Linderman
Hey guys, I've been spending practically every free moment of my time the past few months working on a project--and I've gotten some valuable help from the community here. Anyway, here I am again to ask for help :) I'm not going to go and explain the project right now, but the part for which

Re: Prevent users from voting twice.

2008-02-28 Thread Adam Reynolds
The simplest way to do this is through a cookie. You can't lock down an IP as this is something that may not be unique to them. (e.g. AOL) If they block cookies don't let them vote. If they vote, clear cookies, vote again, so be it. If you want to prevent that, ask them to login/register (with

Re: Prevent users from voting twice.

2008-02-28 Thread George Linderman
Okay, got it. Thank you. Yeah, I was wondering if IPs were not going to work...but didn't know that they were *that* unreliable. How exactly would I implement the cookie option? I don't have any experience with cookies, aside from knowing that they are little files on the user's computer.

Prevent users from voting twice.

2008-02-28 Thread Daniel Kessler
The problem with using IPs or cookies to assure only one vote is that you're not assuring only one person vote, by one machine vote. When a machine is in a shared environment (school labs, libraries, one machine for a family), that machine will only get one vote. If that's fits your

Re: Prevent users from voting twice.

2008-02-28 Thread Adam Reynolds
Well ask yourself at what level would you like to be uniquely identified when visiting any website? I certainly don't want them to know my MAC address. Have a look at the cfcookie tag. Also be aware that cfcookie cannot be used with cflocation. The concept with cookies is : 1) Landing page

Re: Prevent users from voting twice.

2008-02-28 Thread Ben Doom
George Linderman wrote: Okay, got it. Thank you. Yeah, I was wondering if IPs were not going to work...but didn't know that they were *that* unreliable. Well, think about this: Everyone in my office is behind the same router. So there are 7 people in this office who would show up as a

RE: Prevent users from voting twice.

2008-02-28 Thread Porter, Benjamin L.
Why not use some sort of captcha they have to enter in addition to selecting the item they wish to vote for. It is hard to automate reading captcha. That combined with a cookie will reduce the amount of duplicates. This