Hi Gloria.

welcome to django.

you need to specify the ip# when you run the development server, otherwise it will run on 127.0.0.1 (localhost)
which can not be accessed from outside the machine.

try
> django-admin.py runserver 192.168.1.2:1111

or 
> django-admin.py runserver dev.blah_server.com:1111

and it should work.

regards
Ian.

On 15/08/2006, at 1:11 PM, Gloria wrote:


Hi. I am a Python geek who has been in the CherryPy/PythonPaste world
for the past year. I have decided to give Django a serious look, and I
have a simple question.

After running this command:

[EMAIL PROTECTED] wi_2> python manage.py runserver 1111
Validating models...
0 errors found.

Django version 0.95, using settings 'wi_2.settings'
Development server is running at http://127.0.0.1:1111/
Quit the server with CONTROL-C.

I expect to get to this URL from a remote machine, like this:

http://dev.blah_server.com:1111

This works in cherryPy and PythonPaste from behind the firewall, so I
know it's not a port issue.

I'm sure I'm missing something simple. Please let me know what url
parameter to set to access my page from a remote machine.

Thank you,
Gloria

--
Ian Holsman
join http://gypsyjobs.com the marketplace for django developers 



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to