Re: Django - Verfication of runserver vs browser

2011-01-26 Thread Kimberly Harvey
Thanks, I restarted the whole Django program. Will send feedbacks if any problems this week. On Tue, Jan 25, 2011 at 12:17 AM, raj wrote: > If none of above seems to work, You may be using a browser like google > chrome, which by default ignores the localhost. > > -- > You received this message

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread raj
If none of above seems to work, You may be using a browser like google chrome, which by default ignores the localhost. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubsc

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Kimberly Harvey
I gotten far enough to where I was able to runserver and it detects NO errors, and that I was able to create my superusers after I've syncdb the manage.py file. On screen: " You just installed Django's auth system, which means you dont have any superusers defined, would you like to create on?" Onc

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Steven Elliott Jr
Have you tried running it on a different port? Can you post the actual error message you get? -Steven Elliott Jr On Jan 24, 2011, at 2:05 PM, Kimberly Harvey wrote: > I ran the browser in the linux. > > On Mon, Jan 24, 2011 at 12:57 PM, Javier Guerra Giraldez > wrote: > On Mon, Jan 24, 2011

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Joel Goldstick
On Mon, Jan 24, 2011 at 2:05 PM, Kimberly Harvey wrote: > I ran the browser in the linux. > > > On Mon, Jan 24, 2011 at 12:57 PM, Javier Guerra Giraldez < > jav...@guerrag.com> wrote: > >> On Mon, Jan 24, 2011 at 1:43 PM, Kimberly Harvey >> wrote: >> > I am using the Django inside the Linux-Debia

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Kimberly Harvey
I ran the browser in the linux. On Mon, Jan 24, 2011 at 12:57 PM, Javier Guerra Giraldez wrote: > On Mon, Jan 24, 2011 at 1:43 PM, Kimberly Harvey > wrote: > > I am using the Django inside the Linux-Debian on my windows 7 machine. > > do you run your browser in Windows or Linux? > > if it's on

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Javier Guerra Giraldez
On Mon, Jan 24, 2011 at 1:43 PM, Kimberly Harvey wrote: > I am using the Django inside the Linux-Debian on my windows 7 machine. do you run your browser in Windows or Linux? if it's on windows, then accessing the dev-server on the Linux virtual machine is just like going to any other machine; yo

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Kimberly Harvey
response to messages: I am using the Django inside the Linux-Debian on my windows 7 machine. This is what happen when I opened the terminal in the Django.. command: python manage.py runserver It runs fine... 0 errors. It shows me the url which is http://.. then I went to the browser on the Dj

Re: Django - Verfication of runserver vs browser

2011-01-24 Thread Bill Freeman
Is the browser running on the same box as djanog? By default, the development server won't answer requests that don't come from the local box. If this is the issue, try: python manage.py runserver 0.0.0.0:8000 This tells the development server to accept requests from anywhere. It is also po

Re: Django - Verfication of runserver vs browser

2011-01-23 Thread Shawn Milochik
If you've been messing around quite a bit trying to fix other issues, the port may be held up by a zombie process or something. Try rebooting. If that doesn't work, see if the command line where runserver is running displays any message. Shawn -- You received this message because you are su