Modify ↓
Opened 16 years ago
Closed 14 years ago
#4359 closed defect (fixed)
Votes plugin fails to install on Linux / MySQL
Reported by: | Owned by: | Ryan J Ollos | |
---|---|---|---|
Priority: | normal | Component: | VotePlugin |
Severity: | critical | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
MySQL on Linux is case-sensitive. There's a uppercase reference to 'votes' table in environment_needs_upgrade, which fails always.
Please change
SELECT COUNT(*) FROM VOTES
to
SELECT COUNT(*) FROM votes
Attachments (0)
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 14 years ago by
Owner: | changed from Alec Thomas to Ryan J Ollos |
---|
Reassigning ticket to new maintainer.
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Current 0.11 version has cursor.execute("select count(*) FROM votes")
. Looks like this has been fixed already, though I don't run MySQL so I can't confirm.
I'd appreciate if you are able to test the latest 0.11 and confirm that the issue is fixed.
Note: See
TracTickets for help on using
tickets.
how could this be unresolved after eight months?