Re: Django neophyte question.

2006-08-15 Thread Bryan Chow
On 8/14/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > Heheh. Welcome indeed. 10 helpful answers in under 20 minutes. ;-) Impressive, but credit should also be given to Google Groups' laggy updates, resulting in 9 out of 10 helpful answerers (including me) being totally oblivious to the fact th

Re: Django neophyte question.

2006-08-15 Thread Jeremy Dunck
On 8/15/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > You'll want these: > http://www.djangoproject.com/documentation/static_files/ > http://www.djangoproject.com/documentation/legacy_databases/ One more: http://www.djangoproject.com/documentation/modpython/#serving-media-files --~--~-~-

Re: Django neophyte question.

2006-08-15 Thread Jeremy Dunck
On 8/15/06, Gloria <[EMAIL PROTECTED]> wrote: > I am sure once I complete the tutorial, I will have questions related > to serving static content, and retrofitting an existing DB into this > framework. You'll want these: http://www.djangoproject.com/documentation/static_files/ http://www.djangopr

Re: Django neophyte question.

2006-08-15 Thread Gloria
Geez! Thank you. :) I am still waiting for my RhubarbTart question to be answered, which I posted two weeks ago (I gave up and fixed the bug myself). Yet here, I get a pile of responses almost instantaneously. This is yet another reason for me to try Django. 8) I am sure once I complete the tut

Re: Django neophyte question.

2006-08-14 Thread limodou
On 8/15/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > On 8/14/06, Ian Holsman <[EMAIL PROTECTED]> wrote: > > > > Hi Gloria. > > > > welcome to django. > > Heheh. Welcome indeed. 10 helpful answers in under 20 minutes. ;-) > My GOD! -- I like python! My Blog: http://www.donews.net/limodou My

Re: Django neophyte question.

2006-08-14 Thread Jeremy Dunck
On 8/14/06, Ian Holsman <[EMAIL PROTECTED]> wrote: > > Hi Gloria. > > welcome to django. Heheh. Welcome indeed. 10 helpful answers in under 20 minutes. ;-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: Django neophyte question.

2006-08-14 Thread Scott Anderson
Gloria, Try: python manage.py runserver dev.blah.server.com: or python manage.py runserver 11.22.33.44: where 11.22.33.44 is the external numeric IP address of dev.blah.server.com. Regards, -scott On Mon, 2006-08-14 at 20:11 -0700, Gloria wrote: > Hi. I am a Python geek who has bee

Re: Django neophyte question.

2006-08-14 Thread Jay Klehr
When I run the dev server from my remote server, I do it like this: python manage.py runserver my.domainname.com:8000 Then I can access it through http://my.domainname.com:8000 my.domainname.com isn't setup anywhere else either (like in Apache or anything), but www.domainname.com is. Jay Glo

Re: Django neophyte question.

2006-08-14 Thread Ian Holsman
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:or > django-admin.py runserver dev.blah_server.com:and it

Re: Django neophyte question.

2006-08-14 Thread Bryan Chow
Hi Gloria, For the Django development server to be accessible externally, you must specify the IP address or 0.0.0.0, e.g. manage.py runserver 0.0.0.0: Hope this helps. Bryan On 8/14/06, Gloria <[EMAIL PROTECTED]> wrote: > Hi. I am a Python geek who has been in the CherryPy/PythonPaste w

Re: Django neophyte question.

2006-08-14 Thread Jeremy Dunck
On 8/14/06, Gloria <[EMAIL PROTECTED]> 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 ru

Re: Django neophyte question.

2006-08-14 Thread limodou
On 8/15/06, Gloria <[EMAIL PROTECTED]> 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 ru

Django neophyte question.

2006-08-14 Thread Gloria
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 Validating models... 0 errors found. Django ve