This could be a problem:
You have a database installed for a regular django project.
Thus, manage.py createsuperuser will create a superuser in this database.
In the case of GAE SKD, it uses the GAE Datastore , so the superuser you created is not there.
This is what you could do:
- Create a normal user
- Go to
/_ah/admin/ and change the data for the user table in the data store by changing the desired is_superuser user field to True .
source share