First time here? Check out the FAQ!

thinkwell's profile - activity

2014-02-08 15:23:06 -0500 answered a question When will Django-1.6 be supported?

I guess I'm on Django 1.5 and have no problems. Haven't tried anything newer though.

>>> import django
>>> django.VERSION
(1, 5, 0, 'final', 0)
2013-12-18 14:16:37 -0500 commented answer login error:relation "django_authopenid_association" does not exist

Thanks. Ran into this problem just and and the migrate still fixes it.

2013-12-18 14:15:59 -0500 received badge Supporter ( source )
2013-11-25 13:48:36 -0500 received badge Teacher ( source )
2013-11-15 18:25:06 -0500 answered a question syncdb can't create admin in Django >= 1.5

I had the same problem on a new install of askbot & postgresql. Make sure that you answer NO to creating an admin account. After getting the NameError: global name 'User' is not defined, run:

  python manage.py migrate askbot

You'll get lots of errors but after completion, you should be able to launch the site with:

  python manage.py runserver `hostname -i`:8000

At least it works for you me...

2013-11-15 17:36:45 -0500 commented question syncdb can't create admin in Django >= 1.5

I'm getting the same error on a brand new install of Askbot / Postgres as well. Any help?