Alberto Ruiz
al at ruiz.ws
Sat Mar 25 17:45:12 EST 2006
Thanks for replying so quickly. This is the part that is confusing. Everything worked fine on a Linux Debian system. So now that I migrated to a FreeBSD system, I have to create other functions? What's different? My main function is labeled 'index': Here is a snipet of what I have in propman.py: from mod_python import Cookie def index (req,LLRuser='',LLRpw=''): global R; R=req; R.content_type="text/html" cur=DBconnectpropman.DB.cursor() ...... So you are saying that I have to modify my calls to my python scrypts to be propman.py/index , instead of just propman.py, right? The version of modpython in my old system was 2.7.10, so I assumed that they weren't that many changes. So is there a way to change the call to my scripts so I don't to append /index ? On Sat, 2006-03-25 at 17:10 -0500, Jorey Bump wrote: > Alberto Ruiz wrote: > > I've looked at the documentation and the faq section but I can't figure > > out what I'm doing wrong. The test script works fine as seen below in > > the first <Directory> directive. But when I try to use the publisher > > handler, I get error not found (404). If I add 'SetHandler', it dumps > > the script code. What am I missing? Or what else can I do to > > troubleshoot the issue. Let me know if I need to post more of the > > httpd.conf. > > > > URLS tried: > > http://www.brianheadrentals.com/cgi-bin/test.py > > http://www.brianheadrentals.com/propman.py > > Go back and read the documentation on Publisher (for your version of > mod_python). Create a function within the module to use as your target: > > http://www.brianheadrentals.com/propman.py/somefunction > >
|