Note about how to deal with problems.
This commit is contained in:
parent
a20b46f973
commit
8f85cfe905
1 changed files with 11 additions and 0 deletions
11
README
11
README
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue