Tagged Questions
10
votes
6answers
907 views
Implementing a voting system without requiring registration
I'd like to implement a voting system on my site, without having to force them to create an account. They would ultimately be voting up/down a piece of content which has a unique ID.
I know that I ...
8
votes
7answers
462 views
Best method to prevent gaming with anonymous voting
I am about to write a voting method for my site. I want a method to stop people voting for the same thing twice. So far my thoughts have been:
Drop a cookie once the vote is complete (susceptible ...
3
votes
7answers
119 views
Unique IPs in a voting system
I'm creating a voting system for my PHP/MySQL website and I would like to make sure one user can only vote once. What would be a good way of doing this? So far I have thought of and semi-implemented ...
3
votes
3answers
419 views
Restrict User Activity Based on IP or on Cookie?
I am working on a PHP script that allows users to vote on certain items. Any user whether logged in or not can vote. Consider the following cases:
If the user is logged in, I can log user's id, and ...
3
votes
3answers
730 views
jQuery voting system
So I am making a voting system, basically a Thumbs Up & Thumbs Down voting system. I am using CakePHP and jQuery with MySQL but want to make sure the front end is correct and this is the best way ...
3
votes
4answers
1k views
PHP voting system with sessions?
I've been reading up on stackoverflow about creating voting systems in PHP that minimize abuse/multiple voting from the same user, but I haven't come across the answer to my question.
I've got an ...
3
votes
4answers
1k views
PHP/MYSQL only allowing one vote per member?
ive been giving the task at work of setting up an awards voting system, I dont know too much about php and mysql. But i know more about this than anyone else here, and my boss in on holiday. But I've ...
2
votes
2answers
44 views
The most efficient method storing voting data in a MySQL database (like StackOverflow)
I'm trying to replicate SE's voting system. User's on my website should only be able to vote on posts one time, then they are locked in. I currently have two tables, users and posts.
How should I ...
2
votes
2answers
475 views
PHP CMS file sharing with rating
I need to set up a community web site to allow people to share binary files in some specific binary format. Files will be visible to everyone. I want users to be able to vote and leave comments about ...
1
vote
3answers
87 views
How does Youtube remember Likes?
So I'm wondering how sites like YouTube remember when a user has "Liked" a video and prevents them from liking it again. Similarly, how a site like Reddit remembers upvotes and downvotes and prevents ...
1
vote
3answers
74 views
Prevent double voting
I'm creating a web application where users will vote for some candidates by clicking thumbs up or thumbs down, and these users won't have any account on the site.
What is the best technique to use? ...
1
vote
3answers
54 views
How can I check if a site has not been directly reached?
I have a voting script. It works well.
But I have a little problem. I don't want people to reach the vote submission page (the page where the vote is submitted to the db) directly. I want them to ...
1
vote
2answers
39 views
Prevent additonal “Likes” on a post with AJAX/jQuery/PHP
I have a site, built using CakePHP.
This site relies on submissions by users who do not authenticate to post.
I'd like to have a "Like" system in place for each post (not Facebook "Like", a custom ...
1
vote
1answer
96 views
Performance of voting system (with account) implemented by using Mysql + PHP
I'm currently creating a voting system with good and bad option for a comment. Basically, the idea is like facebook's one, but have a bad option(or more) for the comment. Here is the table structure
...
1
vote
3answers
208 views
How to prevent gaming a voting system where people can vote once per day?
I've implemented a voting system for videos online, wherein visitors can only cast a vote once in any given day. I use combination of their email address and timestamp to ensure that each vote is ...
0
votes
1answer
61 views
How to make sure users can only vote once per post
I'm building a website which has a feature which ressembles SE's voting system. I'm trying to restrict users from voting more than once per post.
Currently, I was thinking of having a field in my ...
0
votes
1answer
55 views
Integrating a 1-10 voting system effectively without common pitfalls
I'm planning on integrating a reasonable ranking/voting system into an existing application.
I'm familiar with how the traditional 5 star rating systems work and know the common pitfalls/problems ...
0
votes
0answers
212 views
Best voting system for codeigniter [closed]
I am putting together a little web app where I will need typical 'like-style' voting. Any suggestions for existing plugins and/or system that are fairly robust? Well aware that there is no sure-shot ...
0
votes
2answers
254 views
Developing a simple voting system in php need help
I need to set up a simple voting system for my application., My application consists of articles posted as well as comments. I would like to add voting abilities to both articles and comments and at ...
-1
votes
1answer
132 views
Voting Method - Mysql
I want to use two buttons to increment two fields in a database table according to selection.
Field 1: blue
Field 2: yellow
For example:
Blue: (3) - Select (+1) - Button 1 (increment the #3)
...