Re: How do I connect to development server with my browser?

2008-01-07 Thread zodman
python manage.py runserver 0.0.0.0:8000 give someone your ip on port 8000 :) Jeff Anderson escribió: > Keith wrote: >> Is there a way to >> connect with the development server remotely > Absolutely! > By default the development server --only-- runs on localhost. If you > want to make it

Re: How do I connect to development server with my browser?

2008-01-02 Thread Peter Rowell
> If I run the dev server briefly, that won't cause any problems, will it? It all depends on your hosting company. When in doubt, ask. It's not that you are port-scanning their accounting machine, but you are creating a "long running process" (i.e. it doesn't just generate a page and exit) that

Re: How do I connect to development server with my browser?

2008-01-02 Thread Keith
Wow! Thanks for all the replies. I appreciate all the help. I'll check out the tutorial, and hope all goes well with the new baby. The server is shared. My son doesn't have any problem with me working on it, but I don't want to cause any problems for him. If I run the dev server briefly, that

Re: How do I connect to development server with my browser?

2008-01-02 Thread cjl
Keith: If you want to take your first steps learning Django without installing it, I work on a tutorial in my spare time called Instant Django: http://www.instantdjango.com It includes a download that contains a portable Django environment that runs under Windows, no installation required, and

Re: How do I connect to development server with my browser?

2008-01-02 Thread Peter Rowell
> My son gave me some space to play in on an Apache server he rents. Is this a dedicated server or a shared hosting account? Dedicated? Carry on. Shared? Watch out! Many shared hosting providers frown on (or outright forbid) "long running processes." Without thinking about what I was doing, I

Re: How do I connect to development server with my browser?

2008-01-01 Thread Empty
http://www.djangoproject.com/documentation/django-admin/#runserver-optional-port-number-or-ipaddr-port "Note that the default IP address, 127.0.0.1, is not accessible from other machines on your network. To make your development server viewable to other machines on the network, use its own IP

Re: How do I connect to development server with my browser?

2008-01-01 Thread Jeff Anderson
Keith wrote: > Is there a way to > connect with the development server remotely Absolutely! By default the development server --only-- runs on localhost. If you want to make it accessible via another interface (like the internet) run it like this: python manage.py runserver xxx.xxx.xx.x:8000

How do I connect to development server with my browser?

2008-01-01 Thread Keith
Greetings: I am an absolute beginner at Python / Django / Web development. (Old school COBOL, VB desktop apps. developer trying to update my skills.) My son gave me some space to play in on an Apache server he rents. I set up Django, created my first project, and ran it in the development