Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-19 Thread Evgenii Bazarov
Thanks for the answers! I was using RedHat rpm and it was giving the problem as it was suggested. After I built mod_perl with apache (mod_perl 1.21, apache 1.3.9, the problem was resolved. At least that's what I thought ! In fact now Apache lets me use more then one PerlTransHandler, but it

Re: [Re: more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
ant others to work then return DECLINED Andrei On Sun, Dec 12, 1999 at 07:46:01AM -0700, Evgenii Bazarov wrote: Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. Apache 1.3.6 on

DocumentRoot hardcoded?

1999-12-16 Thread Evgenii Bazarov
Hi everybody! I set DocumentRoot /home/httpd in httpd.conf However I am getting $r-document_root() as '/home/httpd/html' in my first Translation handler. I am wondering is there another place where it might be soft/hard coded? I use prebuilt version of Apache coming with Linux

Re: [Re: again - more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
st rewrite the SimpleTranslation::handler to be ModeratelyComplexTranslation::handler, and do the Right Thing in that one handler? I.e., if every request is being passed through 2 handlers, why not consolidate them into one handler? darren Evgenii Bazarov ([EMAIL PROTECTED]) wrote: Hi everybody

again - more then one PerlTransHandler

1999-12-14 Thread Evgenii Bazarov
Hi everybody, Sorry for the poor wording of my question. Once again: I am trying to install and use more then one translation handler. I tried two approaches to specifying handlers in the Apache config file (both recommended in the "Eagle" book.) First, have both handlers on the same line,

piggybacking data on request ?

1999-12-12 Thread Evgenii Bazarov
Hi everybody! I am looking for way to pass data (e.g. hash reference) from one handler (e.g. from URI Translation to Response). Probably I could derive from Apache request class, and pass data on the request. Or there is simpler way to do this? Cheers, Evg

more then one PerlTransHandler

1999-12-12 Thread Evgenii Bazarov
Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. Apache 1.3.6 on Linux with mod_perl 1.19 According to "Apache Modules" book it should be possible... Any advice will be highly appreciated!