On Mon, Jan 12, 2009 at 11:15 AM, moiseyo <moisey...@gmail.com> wrote:

>
> I'm new  with Django , and I'm follow the tutorial.
>
> I have install Django on  my Linux box , and use My Windows  box  as a
> development station - Web  Browser , Editor  , File copy etc.  I use
> SAMBA  to access Linux files.
>
> I made a few steps   and  made
>
> python manage.py runserver
>
> Django version 1.1 pre-alpha SVN-9729, using settings 'Signs.settings'
> Development server is running at http://127.0.0.1:8000/
>
> Everything looks fine
>
> but if I try access   http://192.168.0.106:8000    the browser cannot
> find a page
>
> if I use   Firefox on Linux with URL http://127.0.0.1:8000/   in can
> see  the  start page.
> ______________________________________________________________________
>
> 1) Is this a security , or I need  to make special setting?
>
> I have ROOT access to both boxes  .
>
> What need to be done.
>
>
python manage.py runserver 0.0.0.0:8000

will make the server listen on all available ports instead of just local
loopback, then you can access it from other machines.

Karen

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

Reply via email to