First time here? Check out the FAQ!

Louis-Philippe's profile - activity

2015-05-21 08:56:20 -0500 received badge Notable Question (source)
2015-05-21 08:56:20 -0500 received badge Popular Question (source)
2012-10-14 17:16:24 -0500 received badge Famous Question (source)
2012-07-23 20:33:43 -0500 commented question How to correctly sync database with Askbot app?

I finally decided to switch to Postgres 9.1 which is the recommended database. It was a breeze to install and run Askbot. The documentation on Askbot.org was great. Thanks Evgeny for your time. Keep up the good work.

2012-07-16 22:53:01 -0500 commented question How to correctly sync database with Askbot app?

When I run python manage.py migrate --fake

The log is

Running migrations for django_authopenid: - Nothing to migrate. - Loading initial data for django_authopenid. No fixtures found. Running migrations for askbot: - Nothing to migrate. - Loading initial data for askbot. No fixtures found.

2012-07-16 22:52:09 -0500 commented question How to correctly sync database with Askbot app?

When I run the command line python manage.py syncdb --all --noinput The log is

Syncing... Creating tables ... Installing custom SQL ... Installing indexes ... No fixtures found.

Synced: > django.contrib.auth > django.contrib.contenttypes > django.contrib.sessions > django.contrib.sites > django.contrib.staticfiles > django.contrib.admin > django.contrib.sitemaps > askbot.deps.django_authopenid > south > askbot.deps.livesettings > keyedcache > robots > django_countries > djcelery > djkombu > followit > askbot

Not synced (use migrations):

2012-07-16 22:49:32 -0500 commented question How to correctly sync database with Askbot app?

The database client version is libmysql - mysqlnd 5.0.8-dev - 20102224 - $Revision: 321634$

2012-07-16 22:45:30 -0500 commented question How to correctly sync database with Askbot app?

Thanks Evgeny for the fast answer. Unfortunately, it did not work. I'm using the community edition of MySQL. It's version is 5.5.25a. Sorry for the multiple comments. Each time I press the Enter key, it posts the comment to Askbot.

2012-07-15 16:41:14 -0500 asked a question How to correctly sync database with Askbot app?

Hi,

I followed the tutorial on installing Askbot:

http://askbot.org/doc/initialize-database-tables.html

When I run "python manage.py syncdb", I get the following message in my terminal:

Not synced (use migrations): - askbot.deps.django_authopenid - askbot

I then ran the two following commands:

  • python manage.py migrate askbot
  • python manage.py migrate django_authopenid

But my tables are not up to date. If I try to login in my local Askbot web application, I get an error message saying "Unknown column 'askbot_anonymousanswer.question_id".

Looking at this table in MySQL, the field is named "question_post_id". My feeling is that Askbot hasn't created the right database schema.

But I don't know any alternative. Does somebody know what I did wrong? How do I know the database version is sync with the application? I couldn't find a table with the database version.

Thanks for your help