Django Admin - Login
I'm building a Django Web App with Django Suit for the administration interface. Already got have Python 2.7, Django 1.10, and MySQL communicating in harmony and started a project:
Solution 1:
It appears you are trying to login on a part of your website which requires administrative rights.
Did you create the user with createsuperuser in ./manage.py shell
?
Solution 2:
created a new database, a new virtualenv, installed django, started a new django admin project, did migration, created a user, installed mysql-python, migrated to mysql, installed django suite, add the specifications to installed apps and all worked perfect.
see the django procedures I went through to make this here.
Post a Comment for "Django Admin - Login"