I had an extra , in schema.sql in the CREATE TABLE discussions stuff... much annoying. There are still errors in the schema, I'm working to track them down so I can get this to install. Yay 2.2.2 =/
I am not sure what you're referring to offhand. Please submit bug reports, with patches if you have them, and we'll take care of it for the next release if appropriate.
Install on 2.2.2 breaks, period. Please provide us a workaround at least. See the trace below
[SNIP]
What is the email address of the account? [slash@eyemax.pif.net]
DBD::mysql::db do failed: You have an error in your SQL syntax near ') TYPE = myisam' at line 1 at bin/install-slashsite line 341.
The CREATE TABLE command below failed. This almost certainly means
the rest of the slashsite installation will fail, so we're aborting.
This is probably because your SQL user associated with your
DBIx::Password us
Ok... This has worked for me (I mean it installs now, nothing more) :
slash@eyemax:~/slash-2.2.2/sql/mysql > diff -Bu slashschema_create.sql.ORIG slashschema_create.sql
--- slashschema_create.sql.ORIG Sat Jan 5 13:15:11 2002
+++ slashschema_create.sql Sat Jan 5 13:16:57 2002
@@ -240,6 +240,8 @@
FOREIGN KEY (uid) REFERENCES users(uid),
FOREIGN KEY (topic) REFERENCES topics(tid),
INDEX (type,uid,ts),
+ KEY (sid),
+ PRIMARY KEY (id)
) TYPE = myisam;
broken stuff in the install (Score:1)
Re:broken stuff in the install (Score:2)
Next release, are you sure ?! (Score:2)
[SNIP]
What is the email address of the account? [slash@eyemax.pif.net]
DBD::mysql::db do failed: You have an error in your SQL syntax near ') TYPE = myisam' at line 1 at bin/install-slashsite line 341.
The CREATE TABLE command below failed. This almost certainly means
the rest of the slashsite installation will fail, so we're aborting.
This is probably because your SQL user associated with your
DBIx::Password us
Re:Next release, are you sure ?! (Score:3, Informative)
Re:Next release, are you sure ?! (Score:2)
slash@eyemax:~/slash-2.2.2/sql/mysql > diff -Bu slashschema_create.sql.ORIG slashschema_create.sql
--- slashschema_create.sql.ORIG Sat Jan 5 13:15:11 2002
+++ slashschema_create.sql Sat Jan 5 13:16:57 2002
@@ -240,6 +240,8 @@
FOREIGN KEY (uid) REFERENCES users(uid),
FOREIGN KEY (topic) REFERENCES topics(tid),
INDEX (type,uid,ts),
+ KEY (sid),
+ PRIMARY KEY (id)
) TYPE = myisam;
Parent