Thanks -- that solved it! Ben
On 17 Nov, 21:16, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Nov 17, 2008 at 8:14 AM, Ben <[EMAIL PROTECTED]> wrote: > > > [snip] > > > I start the development server using: > > > python manage.py runserver > > > which seems to work ok: > > > Validating models... > > 0 errors found > > > Django version 1.1 pre-alpha SVN-9479, using settings > > 'prototype.settings' > > Development server is running athttp://127.0.0.1:8000/ > > Quit the server with CONTROL-C. > > > [snip > > As far as I know there are > > no firewalls between me and the server (it's a shared hosting server > > with Site5). > > [snip] > > If you're trying to connect to the server from a machine other than the one > you are running it on, you need to tell it to listen on all the machine's > addresses, not just local-loopback (127.0.0.1), which is the default. Try: > > python manage.py runserver 0.0.0.0:8000 > > Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

