Re: url config problem

2007-09-27 Thread Dushyant Sharma
i think you are using windows. try adding "MaxRequestsPerChild 1" (without quotes) to httpd.conf, you can change this setting later after reading how apache handles requests. i think that wouldn't be required for you now. also put your application to the python path (you can try initial

Re: url config problem

2007-09-27 Thread Dushyant Sharma
which os you are using?? is your site-packages directory under system path?? and can you paste lines from httpd.conf, urls.py and settings.py where you have made modifications. On Sep 26, 6:49 pm, swati <[EMAIL PROTECTED]> wrote: > I have configured httpd.conf, you can look at it >

Re: url config problem

2007-09-26 Thread swati
I have configured httpd.conf, you can look at it at http://82.165.180.35:8088/djproject/ I can see the first django page. Could not run any application when I try to do that by editing urls.py file. Thanks, Swati On Sep 26, 1:27 pm, Dushyant Sharma <[EMAIL PROTECTED]> wrote: > i think you have

Re: url config problem

2007-09-26 Thread Dushyant Sharma
i think you have not configured httpd.conf and this is why apache can not identify the request. read this page http://www.djangoproject.com/documentation/modpython/ also make entry in httpd.conf LoadModule python_module /usr/local/apache2/modules/mod_python.so (for linux) for windows use your

Re: url config problem

2007-09-25 Thread qwerty
"I have set up django with mod_python on apache successfully" What do you mind by set up django inside Apache? You mean that mod_python read and works ok with your Python files, or that a Django project you've made is already working in that Apache server. In any case, I'll look for what

Re: url config problem

2007-09-25 Thread [EMAIL PROTECTED]
Swati, Whatever location apache is using for handling django won't be given to django's root url config. I can post more about this tonight. Lucy http://www.ThoughtAndMemory.org On Sep 25, 12:21 pm, swati <[EMAIL PROTECTED]> wrote: > Hi All, > > I am very much new in django. I am facing some