Re: [Tutor] hand-holding for web development

2005-10-24 Thread Jay Loden
Sorry, didn't see your reply until now... the directory section can go either in your main apache config file (in my case, /etc/httpd/conf/httpd.conf ) OR in a separate file in the conf.d directory. In my case, I have a python.conf file in /etc/httpd/conf.d/ that contains the following: LoadM

Re: [Tutor] hand-holding for web development

2005-10-18 Thread nitin chandra
Thanks Jay On 10/18/05, Jay Loden <[EMAIL PROTECTED]> wrote: > You need an Apache config section to tell it what to use mod_python on and > how. For example, in httpd.conf or a separate file in your conf.d directory i guess the can be added only in one of the conf file. Which one should i add in

Re: [Tutor] hand-holding for web development

2005-10-17 Thread Jay Loden
You need an Apache config section to tell it what to use mod_python on and how. For example, in httpd.conf or a separate file in your conf.d directory for apache: AddHandler mod_python .py PythonHandler test PythonDebug On tells Apache to use mod_python on all .py f