About 1,690,000 results
Open links in new tab
  1. Can't log into localhost:8000/admin ... ERR_CONNECTION_REFUSED

    Apr 9, 2020 · Based on the limited info: Try to access 127.0.0.1:8000/admin instead of localhost:8000/admin. In django's settings set ALLOWED_HOSTS = ['*'] (NOTE: This is only …

  2. how to set my django path to …

    Jan 9, 2019 · here is my myproject/urls.py urlpatterns = [ url(r'^$', index, name='index'), url(r'^admin/', admin.site.urls), url(r'^myapp/', include('myapp.urls')) ] when i run ...

  3. django - http://127.0.0.1:8000/admin/ not connected - Stack …

    Sep 29, 2022 · I defined a function and when I use schedule, I don't have access to the admin page and other pages through http://127.0.0.1:8000/admin/. I have a blank page.But my …

  4. Cannot connect to localhost:8000/admin page, Django

    I created a superuser for my site, but when I started the server and tried to connect to the localhost:8000/admin page, I got an ERR_CONNECTION_REFUSED (site cannot be …

  5. Server stops at http://127.0.0.1:8000/admin/ in python django

    Mar 11, 2020 · Here I am creating my first Django application that is basically a polls app. I have followed these steps: Created a django app in pycharm. Wrote two tables in models.py. Done …

  6. Django 127.0.0.1:8000/admin/ stopped working - Stack Overflow

    Nov 5, 2017 · Django 127.0.0.1:8000/admin/ stopped working Asked 8 years ago Modified 8 years ago Viewed 11k times

  7. Cannot access Django administrator site in Django-3

    Mar 29, 2020 · Entered username, e-mail, password but whenever I try to access this link http://127.0.0.1:8000/admin/ it says "This site can’t be reached" and "127.0.0.1 refused to …

  8. django - http://127.0.0.1:8000/ This site can’t be reached127.0.0.1 ...

    Feb 9, 2024 · To share your Django project locally, you need to run it within your virtual environment using the following command: python manage.py runserver 0.0.0.0:8000 Then …

  9. Cannot Access the Local Host on Python 127.0.0.1:8000 in browser

    May 15, 2022 · I change it to path('products/', include('products.urls')) and the result in the browser is:

  10. How can I change "127.0.0.1:8000 / localhost:8000" to my desired …

    Jul 14, 2019 · The --host option actually changes which address the server will listen on, and isn't directly related to the address in the browser. The default is to listen on localhost (127.0.0.1), …