Hi
I'm unable to login back to my askbot site as admin.
Is this an issue with cache? or is this a bug? Thanks.
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()
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-07-26 23:45:10 -0500
Seen: 114 times
Last updated: Jul 28 '12
How to log in as administrator after password login was disabled?
user creation "screen name" vs "username" in admin page
Cannot delete a user in the django admin UI : table follow_follow does not exist
CSRF token missing or incorrect
make default for email subscriptions configurable
Should I create an admin user on my first syncdb?
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
What happens when you try to log in? Are other users able to log in?
todofixthis ( 2012-07-27 08:44:13 -0500 )editYea others can login. But only admin can't. I'm struck. @Evgeny how to reset or make it fix?
pajju ( 2012-07-27 13:59:37 -0500 )editHow did you log in to you admin account? With password or other method? Which? Try to recover your account by email.
Evgeny ( 2012-07-27 14:55:54 -0500 )editI login with a password. Also I had not configured emails so i don't have option for recovery. @Evgeny
pajju ( 2012-07-28 12:57:22 -0500 )edit