Revision history [back]
I'm guessing that your django_authopenid
has not been migrated - my fault - have not updated the instructions.
Try (in addition):
python manage.py migrate django_authopenid
edit: this solves the problem, please make AUTHENTICATION_BACKENDS in settings.py look this way:
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'askbot.deps.django_authopenid.backends.AuthBackend',
)
I forgot to update that in the settings.py
template. You get 50 rep bonus for reporting this annoying issue :).
I'm guessing that your django_authopenid
has not been migrated - my fault - have not updated the instructions.
Try (in addition):
python manage.py migrate django_authopenid
edit: this solves the problem, please make AUTHENTICATION_BACKENDS in settings.py look this way:
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'askbot.deps.django_authopenid.backends.AuthBackend',
)
I forgot to update that in the settings.py
template. You get 50 rep bonus for reporting this annoying issue :).
I'm guessing that your django_authopenid
has not been migrated - my fault - have not updated the instructions.
Try (in addition):
python manage.py migrate django_authopenid
edit: this solves the problem, please make AUTHENTICATION_BACKENDS in settings.py look this way:
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'askbot.deps.django_authopenid.backends.AuthBackend',
)
I forgot to update that in the settings.py
template. You 50 rep bonus for reporting this annoying issue :).