|
We have website with articles users can vote for. What is the recommended method of limiting votes?
There are so many sites that have voting implemented that I know some possible solutions but I guess that is some basic bulletproof recommended method ...
Started by Jiri on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want to allow for users to vote a proxy, so it ....
That way you can store their vote in some data storage (DB).
Times-on-a-website
The best way of preventing duplicate posts is having only signed in users vote.
|
|
I am trying to build a site with news links that can be voted, I have the following code:
case 'vote': require_once('auth/auth.php'); if(Auth::isUserLoggedIn()) { require_once('data/article.php'); require_once('includes/helpers.php'); $id = isset($_GET...
Started by Slzr on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you can....
This way you pair username and password against the votes and can ensureHave a table that keeps track of a user's vote for an article (something like UserID,ArticleID,VoteTimeStamp).
Users to register to vote.
|
|
Which Way Would Hibs Vote In Your Opinion? If Rangers folded and created a 'Phoenix' club or newco Rangers FC and applied to get straight back in the SPL I understand it would go to a vote between the 11 remaining SPL teams. Which way do you think Rod...
Started by King_Of_Kings on
, 40 posts
by 28 people.
Answer Snippets (Read the full thread at hibeesbounce):
Think the name! Re: Which Way Would Hibs Vote In Your Opinion? Originally Posted by King_Of_Kings If Rangers I understand it would....
Re: Which Way Would Hibs Vote In Your Opinion? Rod would vote yer - of course he would.
|
Ask your Facebook Friends
|
PTC is too Time consuming earning way vote please
Started by balmohan on
, 15 posts
by 12 people.
Answer Snippets (Read the full thread at emoneyspace):
I agree True but if you are....
I agree.
Pay is more than I earn at minimum wage job .
I own almost 100 ptcs and if was not for forum deals I could run them in few hours daily .
Not if owner.
We can earn more income from other ways yes i agreed Nope.
|
|
Simple way decide which US Prez candidate to vote for
Question: Is the guy the Bamster?
Answer: No, so vote for him.
But be careful. The Bamster has many subterfuges, and may hide under a Romeny mask or a Newt mask or a Nixon mask.
Started by mhaze on
, 19 posts
by 15 people.
Answer Snippets (Read the full thread at randi):
Doesn't this mean that you don't....
To decide who to vote for, just vote against the guy you hate.
The Bamster has many subterfuges, and may hide? I've always found this odd .
But be careful.
The Bamster?
Answer: No, so vote for him.
|
|
I'm working on a web-based contest which is supposed to allow anonymous users to vote, but we want to prevent them from voting more than once. IP based limits can be bypassed with anonymous proxies, users can clear cookies, etc. It's possible to use a...
Started by Jon Galloway on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
That no, there is no reliable way to avoid cheating if you let anonymous users vote (or do anything that lets them is similar enough to one already in the database (you'll have to tweak that) you can throw out that vote one vote....
|
|
5 - Round My Way (Voting)
Sponsored By: Vision Graphix
http://www.talkphotography.co.uk/for...hix_460x68.gif
Vision Graphix will provide a print of the winning image for the winner each month
This is multiple choice, so you may vote for as many or as...
Started by fabs on
, 30 posts
by 21 people.
Answer Snippets (Read the full thread at talkphotography):
All you can vote for more than one as I can't pick a favourite, each time I picked one I scrolled down and changed my mind.
Fascinating to see how everyone rose to the challenge of shooting something around their way.
|
|
I'm curious about what be the best way to model this for optimized performance... not as concerned about real time data integrity
I'll continue with the stackoverflow example
Question id title Votes id user question
A question has many votes
For many ...
Started by nategood on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example you're not that worried about....
If it is REALLY too slow, you can cache the vote count in the Question table:
id - title - votecount
You can update the votecount whenever you record a vote.
On (question) in the Votes table.
|
|
I just hate the "vote(s)" system.
If you could please just use a restriction for that one occasion of "1 vote", that would make me a happy man ^^
Started by VincentU on
, 12 posts
by 4 people.
Answer Snippets (Read the full thread at xenforo):
In russian from a history of polls doing this, so we only had the "vote(s)" phrase, but 1.1.3 has a separation.
Didn't think of it that way yet
Good idea IMO.
The the xenforo syntax to do it in templates.
|
|
Hi all,
I'm trying to create a Stackoverflow like voting system, and I've run into a slight problem.
I have the following HTML that has jQuery onClick events wired to it:
<div id="c_<%=Html.Encode(Model.C.cID) %>" class="votes"> <img src...
Started by Jeremy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
$.post("/Vote/CUp", { id: id[1] }, function(data) { $("#vc_"+data.id).html(data.voteCount); }, "json" ); } else { //R Vote $.post....
= $(this).parent().attr("id").split("_"); if (id[0] == "c") { //C Vote //id[1] contains the id number.
|