Problems installing with mysql
Hi all,
I want to install latest version (7.40) using "mysql"
Why not postgresql? Because my project is using mysql, I want to integrate askbot to it soon
What I did so far?
git clone git://github.com/ASKBOT/askbot-devel.git askbot_deploy
cd askbot_deploy
virtualenv .
python setup.py develop
created a database named "askbot"
askbot-setup, and I have answered questions
set DATABASE_ENGINE = mysql, save and exit
python manage.py syncdb
--- I got a warning here: (1146, "Table 'askbot.askbot_badgedata' doesn't exist"))
python manage.py migrate
--- I got error here:_mysql_exceptions.OperationalError: (1061, "Duplicate key name 'askbot_badgedata_56ae2a2a'")
I have read this thread: http://askbot.org/en/question/3170/askbot_badgedata-does-not-during-initial-database
I tried this scenario using InnoDB and MyIsam as default storage engines.
Here are the logs for those operations: http://pastebin.me/bc23773578d79a55882d7ced4e13751d
My Question: Is askbot 7.40 broken for MySQL? If so, are there any specific version that I can use with MySQL?
Thanks for making this great project open-source.
Comments