thinkwell's profile - activity
11 years ago | 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)
|
11 years ago | commented answer | login error:relation "django_authopenid_association" does not exist Thanks. Ran into this problem just and and the migrate still fixes it. |
11 years ago | received badge | Supporter ( source ) |
11 years ago | received badge | Teacher ( source ) |
11 years ago | 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... |
11 years ago | 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? |