Revision history [back]
Do you have a hosted site at askbot.com, if so, then tell which site and I will help you. Most likely you've made the typo in your password the first tim or forgot it.
If you are hosting your own site then you can do this:
python manage.py shell
>>> from django.contrib.auth.models import User
>>> me = User.objects.get(username='myusername')
>>> me.set_password('my_new_password')
>>> me.save()
>>> exit()
Do you have a hosted site at askbot.com, if so, then tell which site and I will help you. Most likely you've made the typo in your password the first tim or forgot it.
If you are hosting your own site then you can do this:
python manage.py shell
>>> from django.contrib.auth.models import User
>>> me = User.objects.get(username='myusername')
>>> me.set_password('my_new_password')
>>> me.save()
>>> exit()