Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2020-04-26 Thread Adam H
I realize this is an old post. so this is for the next person who stumbles in here looking for an answer to the same question. I had the same problem. for me, i was missing a colon in my code. it was that simple. check for red underlines in your code i tried runserver again, python3 manage.py

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Paul Menzel
Am Dienstag, den 08.12.2009, 08:54 -0800 schrieb Jenn Hughes: > I'm not sure what you mean by box. »box« in this case means computer or system. Thanks, Paul signature.asc Description: Dies ist ein digital signierter Nachrichtenteil

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Shawn Milochik
On Dec 8, 2009, at 11:38 AM, Jenn Hughes wrote: > I checked and no proxy is in place. I tried the other IPs, two > wouldn't let me assign it and the third went through but gave me the > same error that I began with. How odd. > I suspect there may be some other tiny but very important problem

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Peter Rowell
OK, let's do a little Networking 101. 127.0.0.1 is an unroutable address (that means you'll never see it on the Internet) that *always* means the local host; in fact it's called 'localhost' in your 'hosts' file. For Linux this is /etc/hosts, for Windows it's in

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Jenn Hughes
I'm not sure what you mean by box. Jenn On Dec 8, 11:26 am, Tom Evans wrote: > On Tue, Dec 8, 2009 at 4:18 PM, Jenn Hughes wrote: > > I gave this a try and I got this error: > > [jjhug...@silo cms]$ python manage.py runserver 156.56.137.131:8000 > >

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Jenn Hughes
I checked and no proxy is in place. I tried the other IPs, two wouldn't let me assign it and the third went through but gave me the same error that I began with. How odd. On Dec 8, 11:24 am, Shawn Milochik wrote: > I don't think they can prevent you from using it locally.

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Tom Evans
On Tue, Dec 8, 2009 at 4:18 PM, Jenn Hughes wrote: > I gave this a try and I got this error: > [jjhug...@silo cms]$ python manage.py runserver 156.56.137.131:8000 > Validating models... > 0 errors found > > Django version 1.1.1, using settings 'cms.settings' > Development server

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Shawn Milochik
I don't think they can prevent you from using it locally. The fact that I can ping the IP address you provided means that it's publicly available. This either means that your machine has its own direct connection to the Internet, or ipconfig returned multiple addresses, including the address of

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Jenn Hughes
I gave this a try and I got this error: [jjhug...@silo cms]$ python manage.py runserver 156.56.137.131:8000 Validating models... 0 errors found Django version 1.1.1, using settings 'cms.settings' Development server is running at http://156.56.137.131:8000/ Quit the server with CONTROL-C. Error:

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Shawn Milochik
Sorry, I should have said 'ipconfig' instead of 'ifconfig' if you're running on Windows, and you mentioned IE so I guess you are. Unless you're running your Django server on one machine and trying to access it from another, which would definitely cause the exact problem you're seeing, but

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Shawn Milochik
If you run 'ifconfig' on the command line, you will get your IP address. Let's pretend that your IP address is 192.168.1.105. Try this: python manage.py runserver 192.168.1.105:8000 See if you can visit http://192.168.1.105:8000 instead. I don't know what the problem is, but maybe it's

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Jenn Hughes
Error on IE: Internet Explorer cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in the address. Error on Firefox: Failed to Connect Firefox can't establish a connection to the server at

Re: New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Shawn Milochik
We'll need some more information. What error messages are you getting, if anything. How do you know the CMS works at all, if it hasn't been run locally? Have you followed the official tutorial to get a basic understanding of how Django works? If not, please do:

New to Django, can't get it running on the web through http://127.0.0.1:8000/

2009-12-08 Thread Jenn Hughes
Hi, I'm new to django and fairly new to programming. I have django installed (and it give no errors when imported on python). I also have a cms made and configured. However I cannot anything to come up on the page when I ran the server and checked http://127.0.0.1:8000/. I have tried some other