Yes, you missed something, but you aren't the first! If you have django.contrib.auth in your INSTALLED_APPS (should be there by default, I think), and ran manage.py syncdb, then it should have prompted you for a superuser account username and password.
If you did that, but don't remember what you put in, you could create a new superuser from the shell (python manage.py shell): from django.contrib.auth.models import User me = User.create_user("learner404","[EMAIL PROTECTED]","password") me.is_super_user = True me.save() Pretty new to Django myself, but I think that should do the trick. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---