Re: Can't Get mod_python script running

2006-02-16 Thread Eric Walstad
Hi treelife, On Thursday 16 February 2006 06:27, treelife wrote: > I need to run Django, but can't get past mod_python.  I'm getting and > internal server error when | run the following mod_python script. > Script: > > from mod_python import apache > > def handler(req): >     req.content_type = '

Can't Get mod_python script running

2006-02-16 Thread treelife
I need to run Django, but can't get past mod_python. I'm getting and internal server error when | run the following mod_python script. Script: from mod_python import apache def handler(req): req.content_type = 'text/plain' req.write("Under Construction") return apache.OK Here is so