Hello, guest. We have noticed that you are not registered at this bug tracker. Your experience will be greatly enhanced if you log in. To do so, you first must register by clicking on the Register tab at the top. If you are already registered, you can login at the Login tab.
Syndicate Syndicate Listing Display Search Login/Register
Bug Id ?
171
Reporter ?
Andrew Petersen
Bugdar / 1.2.3
Status ?
Unconfirmed
Severity ?
Critical
Duplicate Of ?
- none -
Fixed in Revision ?
Mstone ?
Summary ?
SQL Error in table collation setting during INSTALL
Report Time ?
May 29, 2009 04:00 AM
Assignment ?
Resolution ?
Open
Priority ?
Normal
Dependencies ?
- none -
Mstone (old) ?


Votes
For: 0 (0%)
Against: 0 (0%)
Total: 0

May 29, 2009 04:00 AM Andrew Petersen
Line 128 of install/install.php:

$db->query("ALTER DATABASE $database COLLATE $COLLATION");

In my install, I changed it to:

$db->query("ALTER DATABASE `$database` COLLATE $COLLATION");

Notice the backticks around $database. Without them, my install failed, as my database had a dash in the name: ita-bugdar. Luckily, easily fixed!