Revision history [back]
I suspect that your storage engine is InnoDB - could you check pls?
To check this - log in to the database and type:
show create table question;
In the end of the output it will tell which storage engine is used.
At the moment Askbot does not support InnoDB, but I put this on todo list - http://bugs.askbot.org/issues/106.
It will be best if you switch to PostgresQL or if you want to use MySQL - configure it for MyISAM engine.
Another thought - if you are just trying askbot then try sqlite3 database, it works just fine for the purpose and there is nothing extra to install and configure.
I suspect that your storage engine is InnoDB - could you check pls?
To check this - log in to the database and type:
show create table question;
In the end of the output it will tell which storage engine is used.
InnoDB. At the moment Askbot does not support InnoDB, it, but I put this on todo list - http://bugs.askbot.org/issues/106.
It will be best if you switch to PostgresQL or if you want to use MySQL - configure it for MyISAM engine.
Another thought - if you are just trying askbot then try sqlite3 database, it works just fine for the purpose and there is nothing extra to install and configure.