Home > OS >  Django superuser admin
Django superuser admin

Time:02-01

I can't load the admin login screen.

have opened a Web browser and went to “/admin/” on local domain http://127.0.0.1:8000/admin/ was supposed to open admin login window.

CodePudding user response:

This issue could be due to several reasons. Here are a few steps you can try to resolve the issue:

  1. Check if the Django development server is running and accessible on the specified address (http://127.0.0.1:8000/).
  2. Make sure you have created a superuser account using the command python manage.py createsuperuser.
  3. Check if the Django administration module is properly installed and configured in your project's settings.py file.
  4. Ensure that your browser has not blocked the loading of resources from localhost or the specified address.
  5. Try clearing the browser cache and cookies and then reload the page.

If these steps do not resolve the issue, you may need to check the logs or debug the code to find the root cause of the problem.

CodePudding user response:

First, check if your Django server is running.You can do that, by typing python manage.py runserver in the terminal and then visiting http://127.0.0.1:8000/admin/ in your browser.

Second, check if the Django admin is enabled. Open settings.py in your project folder and check if INSTALLED_APPS list has the django.contrib.admin element.

Third, check if you have an admin.py file in your app directory. The code should looks something like this:

from django.contrib import admin

from .models import MyModel

admin.site.register(MyModel)

Fourth, Check for your login credentials in your Django settings. Go to your project's settings.py file and you have to have this code:

LOGIN_URL = '/admin/login/'

LOGIN_REDIRECT_URL = '/admin/'

And the last option is to try clearing your browser cache and cookies and restarting the server.

  • Related