Monday, January 24, 2011

Re: Django - Verfication of runserver vs browser

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 possible that you have firewall settings that prevent you
from accessing the box.

Bill

On Mon, Jan 24, 2011 at 1:21 AM, Shawn Milochik <shawn@milochik.com> wrote:
> 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 subscribed to the Google Groups "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
>
>

--
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 unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment