Reset a Django password
Tech Notes
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/