Active
Project:
Poll Enhancements
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Mar 2012 at 12:48 UTC
Updated:
19 Jun 2013 at 15:28 UTC
At random intervals the poll functionality prevents anonymous users to vote. It could be related to user agent string that's used to generate hash for each vote.
First aid help is to check results from SQL query:
SELECT * FROM poll_vote WHERE uid = 0 AND hostname NOT LIKE '%#%'
If results are found, execute query:
UPDATE poll_vote SET hostname = CONCAT(hostname, '#', RAND()) WHERE uid = 0 AND hostname NOT LIKE '%#%'
Comments
Comment #1
mattking5000 commentedBump
Great temporary fix, would like to see a permanent one.