Note about how to deal with problems.

This commit is contained in:
Bradley M. Kuhn 2013-12-18 19:04:41 -05:00
parent a20b46f973
commit 8f85cfe905

11
README
View file

@ -66,3 +66,14 @@ That number you see at the end is this election's id. The URL you'll give out
is thus something like:
http://example.org/vote?election_id=THAT_NUMBER
Dealing With Problems
=====================
## Missing Ballots
Voters might complain that they haven't received their token. Likely, it
either went missing or the email address was wrongly noted in the
database. In any case, you need to find the ID of the voter With the ID do
something like:
SELECT * FROM election_tmp_tokens WHERE election_id = 17 AND election_voter_id = $ID;