How to see who has voted [message #25550] |
Mon, 13 June 2005 11:43 |
windy
Messages: 4 Registered: June 2005
Karma: 0
|
Junior Member |
|
|
Hi!
I'm wondering how to see the given votes on a poll. Is there an admin-feature or do I have to take a look at my database?
Also I have the problem that open polls do not appear when I click on "Show polls" at the main page.
Regards
Stephan
|
|
|
Re: How to see who has voted [message #25552 is a reply to message #25550] |
Mon, 13 June 2005 13:18 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
That would be a bug, but I have not experienced situations where polls are not being listed by the show poll utility. Are you sure that the "missing" polls are not just on another page of show polls?
FUDforum Core Developer
|
|
|
|
|
|
|
Re: How to see who has voted [message #25693 is a reply to message #25680] |
Fri, 17 June 2005 17:16 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
There is no web-panel to show you who voted on the poll, you can however fetch this information via SQL query.
SELECT u.alias FROM fud26_poll_opt_track p
INNER JOIN fud26_users u ON u.id=p.user_id
WHERE p.poll_id=[id of the poll you are interested in]
If you edit the message with a poll and then click on the "edit poll" link, it'll show you the time limit for the poll.
FUDforum Core Developer
|
|
|