Quantcast
Viewing latest article 9
Browse Latest Browse All 10

How to Reset Django Admin Password

There is a time when I forgot my password for Django admin. You can create new one using createsuperuser, but if you want to reset your available account you can use django shell : python manage.py shell Now, get your account and set new password. from django.contrib.auth.models import User   user = User.objects.get(username='admin') user.set_password('new_password') user.save() [...] Related posts:
  1. Sending Email Using Gmail Account in Django
  2. A Quick Tutorial on Django MPTT
  3. Django and TinyMCE

Viewing latest article 9
Browse Latest Browse All 10

Trending Articles