Re: Voting only once - how to enforce ???

2007-05-23 Thread Mik Muller
This is what I do on my sites, and yet every now and then someone will create a secondary account to vote again. All depends on how important the vote is. If the issue is "what's your favorite color socks" it's unlilely people will vote more than once (or even at all!). Mik >restricting votin

Re: Voting only once - how to enforce ???

2007-05-23 Thread Jim H
We use a registration system to do voting. A valid email is required (and verified) before they vote. This keeps the voting as honest as possible and still requires a valid email (so yes, you could use multiple email addresses, but that still requires the voter to have multiples - oh and good

Re: Voting only once - how to enforce ???

2007-05-23 Thread Rick Root
for the most part, it can't be done. If you use cookies to restrict, people can delete their cookies. If you restrict by IP address, people can go to another computer, and multiple people can't vote from the same computer. If you require authentication, people create multiple accounts Now... if y

Re: Voting only once - how to enforce ???

2007-05-23 Thread Tom Chiverton
On Wednesday 23 May 2007, [EMAIL PROTECTED] wrote: > Does anyone have any ideas on how to ensure that voters can only vote once > and not rely on cookies being enabled, deleted etc. There was a thread on the newsgroup recently: http://groups.google.co.uk/group/alt.comp.lang.coldfusion/browse_threa

RE: Voting only once - how to enforce ???

2007-05-23 Thread Leitch, Oblio
veral per individual, and people on shared internal NAT's all appear as one. You could try IP + user agent, but it's still pretty weak. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 9:18 AM To: CF-Talk Subject: Voting only

Re: Voting only once - how to enforce ???

2007-05-23 Thread Jim Wright
On 5/23/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm creating a voting application for a photo contest and the non-technical > person running the show doesn't want voters to have to verify their email > address > before their vote is counted. Although this method isn't fool proof, it do

RE: Voting only once - how to enforce ???

2007-05-23 Thread Scott Stewart
esday, May 23, 2007 9:25 AM To: CF-Talk Subject: RE: Voting only once - how to enforce ??? Only other thing I can think of is to check their IP. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 8:18 AM To: CF-Talk Subject: Voting only once

RE: Voting only once - how to enforce ???

2007-05-23 Thread Dave Francis
Which means that you might be limiting multi-user PC's to one vote. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 9:25 AM To: CF-Talk Subject: RE: Voting only once - how to enforce ??? Only other thing I can think of is to check the

RE: Voting only once - how to enforce ???

2007-05-23 Thread Andy Matthews
Only other thing I can think of is to check their IP. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 8:18 AM To: CF-Talk Subject: Voting only once - how to enforce ??? I'm creating a voting application for a photo contest and th

Voting only once - how to enforce ???

2007-05-23 Thread coldfusion . developer
I'm creating a voting application for a photo contest and the non-technical person running the show doesn't want voters to have to verify their email address before their vote is counted. Although this method isn't fool proof, it does create a level of effort to break the one vote rule. Does a