I can view the admin login page of django admin, but after entering the correct login information, it will remain on the same login page with empty text fields. It will show messages if the login details are incorrect. I have the following: what methods can be fixed since the log says nothing.
What are some ways to test shell login?
Use manage.py createuperuser to create superuser by default skipping during syncdb startup
Cleared cookies and retries are retried.
Fix SITE_ID in settings.py
settings.py import logging import pwd import os DEBUG = True TEMPLATE_DEBUG = DEBUG DEBUG_TOOLBAR = False PROFILER_ON = False INTERNAL_IPS = ( '127.0.0.1' ) ADMINS = ( ('Admin', ' test@domain.com '), ) SEND_BROKEN_LINK_EMAILS = False MANAGERS = ADMINS DEFAULT_FROM_EMAIL = ' test@domain ' SERVER_EMAIL = DEFAULT_FROM_EMAIL EMAIL_HOST = 'test' UPLOAD_ROOT = '/domain/uploads' PUBLIC_UPLOAD_ROOT = '/domain/htdocs/public_uploads' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'table_name', 'USER': 'username', 'PASSWORD': 'password', 'HOST': 'localhost', 'PORT': '',
user1076881
source share