--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com.
Is it that your local server is running but you're unable to access the requested page or "python manage.py runserver" command is not running d server? A little bit of information will be very helpful
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo2GOfxpcDbJJZ1LHLYUHRoguAuStvwVW0h%2Bzw2AuxvUw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0sygCesoKDxeJxYTY%3DN61VG50ViW5bj%2Bq2nVxwvu6qYrfpQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo%3DiW576Jyxz234HdmfxDb8X7qR8NF-sOp6%3DZv39eeo3g%40mail.gmail.com.
try running the server without including the ip or port,just run "python manage.py runserver" only.
The way I tend to solve problems like this is I reduce the search space by ruling out what is obviously not the issue(e.g I don't think you have to reinstall your os or that it has anything to do with https since you're running locally) next I look at the error message(especially the last line in cmd) then I do a little bit of Googling.just keep ruling out what didn't work eventually you will arrive at d solution.for example,you can startup a new project in a virtual environment n run the server of the new project,if you don't get the error again you can be rest assured the error has to do with the specific project you're working but if you do then the next suspect should probably be your os.since the server is not running at all that rules out the Web browser.
Just be patient,chop it off bit by bit and you will eventually get there.best of luck
I am using the command python manage.py runserverBut it is not running the serversI tried localhost with 8000 and 8080 alsoThe tried 0.0.0.0:8000 and with 8080I am not running any other servers.While checking the ip4 in cmd...it's showing 192.168.1.11 ....tried python manage.py runserver with this also but didn't work.
On Fri, Dec 18, 2020, 11:27 PM Akanimoh Osutuk <akani...@gmail.com> wrote:
The port is probably being used by another app. Are u running other development servers?
On Fri, 18 Dec 2020, 18:34 Parul., <parul....@gmail.com> wrote:
This is the error which I am getting.
On Fri, Dec 18, 2020, 10:59 PM Akanimoh Osutuk <akani...@gmail.com> wrote:
What errors are you getting?
On Fri, 18 Dec 2020, 17:28 Parul., <parul....@gmail.com> wrote:
i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080 as well, still getting same error.used 127.0.0.1 with ports 8000 and 8080 still getting error--i have put '*' in ALLOWED_HOSTS
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo2GOfxpcDbJJZ1LHLYUHRoguAuStvwVW0h%2Bzw2AuxvUw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0sygCesoKDxeJxYTY%3DN61VG50ViW5bj%2Bq2nVxwvu6qYrfpQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo%3DiW576Jyxz234HdmfxDb8X7qR8NF-sOp6%3DZv39eeo3g%40mail.gmail.com.
try running the server without including the ip or port,just run "python manage.py runserver" only.
The way I tend to solve problems like this is I reduce the search space by ruling out what is obviously not the issue(e.g I don't think you have to reinstall your os or that it has anything to do with https since you're running locally) next I look at the error message(especially the last line in cmd) then I do a little bit of Googling.just keep ruling out what didn't work eventually you will arrive at d solution.for example,you can startup a new project in a virtual environment n run the server of the new project,if you don't get the error again you can be rest assured the error has to do with the specific project you're working but if you do then the next suspect should probably be your os.since the server is not running at all that rules out the Web browser.
Just be patient,chop it off bit by bit and you will eventually get there.best of luck
On 18 Dec 2020 7:11 pm, "Parul." <parul....@gmail.com> wrote:
I am using the command python manage.py runserverBut it is not running the serversI tried localhost with 8000 and 8080 alsoThe tried 0.0.0.0:8000 and with 8080I am not running any other servers.While checking the ip4 in cmd...it's showing 192.168.1.11 ....tried python manage.py runserver with this also but didn't work.
On Fri, Dec 18, 2020, 11:27 PM Akanimoh Osutuk <akani...@gmail.com> wrote:
The port is probably being used by another app. Are u running other development servers?
On Fri, 18 Dec 2020, 18:34 Parul., <parul....@gmail.com> wrote:
This is the error which I am getting.
On Fri, Dec 18, 2020, 10:59 PM Akanimoh Osutuk <akani...@gmail.com> wrote:
What errors are you getting?
On Fri, 18 Dec 2020, 17:28 Parul., <parul....@gmail.com> wrote:
i am not able to connect , i tried to use 0.0.0.0:8000 , 0.0.0.0:8080 as well, still getting same error.used 127.0.0.1 with ports 8000 and 8080 still getting error--i have put '*' in ALLOWED_HOSTS
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b6e49e34-46f1-4c5f-9829-358b3323d381n%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0syjmtd4q9Lfx6dzqoZTiK-FQ8zz6V22ArB-5HdzUB7azkw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo2GOfxpcDbJJZ1LHLYUHRoguAuStvwVW0h%2Bzw2AuxvUw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CADA0sygCesoKDxeJxYTY%3DN61VG50ViW5bj%2Bq2nVxwvu6qYrfpQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFo%3DiW576Jyxz234HdmfxDb8X7qR8NF-sOp6%3DZv39eeo3g%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMcrWSdB_gUw6zeHv9pKXsKpQD4M%3Dqjxh6aaE5HYAsQptrC0DQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjHRFp7weOOhUMBLN6wsy30ZaPisz6z%3Do6%2BMPR%3D_FtTwB-G7w%40mail.gmail.com.
--
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CABFQhy5W1SX-1WuP%3DUSy%2BU3T-bg3S1zRKnZWvk%2Bf4P7H27ty%2Bw%40mail.gmail.com.
--
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAC3mK7d6-Zyop2q09MjKB1G9KE_oN2%3DKpr0jKafmLFHdqni9Ww%40mail.gmail.com.