RE: Mapping files

2002-03-14 Thread Stathy G. Touloumis
Ok, I found an interim solution for my file mapping issue the problem I am running into now is that get/post data associated with the request is lost . . . Is this covered in the mod_perl cookbook? I am trying to map a uri to a file based on certain factors. I would like to have this done

Mapping files

2002-03-13 Thread Stathy G. Touloumis
Hi, I am trying to map a uri to a file based on certain factors. I would like to have this done after the 'Trans' phase when certain information is available. I noticed when the original file mapping does not exist (what apache maps in it's 'Trans' phase) the 'content_type' method does not

RE: Mapping files

2002-03-13 Thread Narins, Josh
Dumb first try suggestion... Write your own super-short Trans handlers that stores the pre-mapped value in pnotes. -Original Message- From: Stathy G. Touloumis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 6:53 PM To: mod_perl List Subject: Mapping files Hi, I am trying

RE: Mapping files

2002-03-13 Thread Stathy G. Touloumis
Dumb first try suggestion... : ) Write your own super-short Trans handlers that stores the pre-mapped value in pnotes. I actually found an initial answer after digging through the docs. After mapping the file I can create a new sub-request via lookup_file($filename) and take appropriate

Re: Mapping files

2002-03-13 Thread Geoffrey Young
Stathy G. Touloumis wrote: Hi, I am trying to map a uri to a file based on certain factors. I would like to have this done after the 'Trans' phase when certain information is available. I noticed when the original file mapping does not exist (what apache maps in it's 'Trans' phase)

RE: Mapping files

2002-03-13 Thread Stathy G. Touloumis
Well, I was able to do it nicely with a sub-request after calling 'lookup_filename'. I will still be picking up a copy of the cookbook though : ) I am trying to map a uri to a file based on certain factors. I would like to have this done after the 'Trans' phase when certain information is