Reset a Django password


cd ~/webapps/django/myproject
python2.5 manage.py shell
from django.contrib.auth.models import User
u=User.objects.get(username__exact='admin')
u.set_password('yourpasswordhere')
u.save()

https://help.webfaction.com/


Categories: HowTos, Snippets

Tags: ,