Re: mod_python help!

2006-02-17 Thread Olivier
treelife a écrit : > I'm getting and internal server error when | run the following > mod_python script. I am actually trying to run Django. > > Script: > > from mod_python import apache > > def handler(req): > req.content_type = 'text/plain' > req.write("Under Construction") > retu

mod_python help!

2006-02-16 Thread treelife
I'm getting and internal server error when | run the following mod_python script. I am actually trying to run Django. Script: from mod_python import apache def handler(req): req.content_type = 'text/plain' req.write("Under Construction") return apache.OK Here is some other relevant