Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#28254 closed Bug (invalid)

get 304 HTTP code and can't open the pages on windows 10

Reported by: 冯钊 Owned by: nobody
Component: HTTP handling Version: 1.11
Severity: Normal Keywords: HTTP Code 302
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

runing on windows10 python 3.6.1 django 1.11.1

I follow the tutorial sted by steb .but i can't open the admin page and i find HTTP 302 code on my command line.

"D:\PyCharm\PyCharm 2017.1.2\bin\runnerw.exe" D:\Python\python.exe E:/DjangoProject/wagtailApp/blog/manage.py runserver 127.0.0.1:8000
Performing system checks...

System check identified no issues (0 silenced).
May 30, 2017 - 16:24:05
Django version 1.11.1, using settings 'blog.settings.dev'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[30/May/2017 16:24:13] "GET / HTTP/1.1" 200 1077
[30/May/2017 16:24:13] "GET /static/css/blog.css HTTP/1.1" 304 0
[30/May/2017 16:24:13] "GET /static/js/blog.js HTTP/1.1" 304 0
[30/May/2017 16:25:42] "GET /admin/ HTTP/1.1" 302 0
[30/May/2017 16:34:17] "GET / HTTP/1.1" 200 1077
[30/May/2017 16:34:17] "GET /static/js/blog.js HTTP/1.1" 304 0
[30/May/2017 16:34:21] "GET /admin/ HTTP/1.1" 302 0

Change History (1)

comment:1 by Tim Graham, 7 years ago

Resolution: invalid
Status: newclosed

There aren't enough details in the report to confirm a bug in Django. See TicketClosingReasons/UseSupportChannels for ways to get help with Django usage.

Note: See TracTickets for help on using tickets.
Back to Top