First time here? Check out the FAQ!

NickJ's profile - activity

2012-08-25 19:38:06 -0500 received badge Necromancer ( source )
2012-08-14 06:11:45 -0500 received badge Teacher ( source )
2012-08-14 06:11:45 -0500 received badge Necromancer ( source )
2012-08-13 09:06:24 -0500 commented answer Problem adding Askbot to existing project

@Evgeny I only needed to add these 5 columns manually and then the rest of the migration worked, adding all the other new ones needed.

2012-08-13 08:15:36 -0500 answered a question UndefinedError: 'settings' is undefined

I had the issue. The problem was I was missing the askbot context processor. Add this to your settings.py:

'askbot.user_messages.context_processors.user_messages', #must be before auth
2012-08-13 07:46:27 -0500 answered a question Problem adding Askbot to existing project

I had the same problem. Executing the following before running ./manage.py migrate askbot fixed the silent fails for the rest to commit:

ALTER TABLE "auth_user"
ADD COLUMN "website" varchar(200) NOT NULL DEFAULT '',
ADD COLUMN "location" varchar(100) NOT NULL DEFAULT '',
ADD COLUMN "about" text NOT NULL DEFAULT '',
ADD COLUMN "real_name" varchar(100) NOT NULL DEFAULT '', 
ADD COLUMN "gravatar" varchar(32) NOT NULL DEFAULT '';