RE: mod_perl and ssi

2000-05-22 Thread Kiran Banoor
iated.. Thanks in advance cheers kiran -Original Message- From: Kenneth Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 8:14 AM To: Ken Williams Cc: [EMAIL PROTECTED] Subject: Re: mod_perl and ssi I'm sending them because some of my scripts have to do redirection. But why t

Re: mod_perl and ssi

2000-05-15 Thread Kenneth Lee
I'm sending them because some of my scripts have to do redirection. But why the problem only happens _occasionally_? Anyway, in the meantime I'm passing the outputs directly to Apache::SSI, Apache::SSI->new( $output, Apache->request)->output; Ridiculous enough, but it seems to work f

Re: mod_perl and ssi

2000-05-15 Thread Ken Williams
Regarding the Filter approach, are you sending the headers yourself? You shouldn't. Filter will do that for you. Don't know much about the OutputChain approach. [EMAIL PROTECTED] (Kenneth Lee) wrote: >When I try the RegistryFilter+SSI approach, the headers generated by >my scripts _occasiona

Re: mod_perl and ssi

2000-05-15 Thread Kenneth Lee
When I try the RegistryFilter+SSI approach, the headers generated by my scripts _occasionally_ show up in the output (but as I see in SSI.pm, there's really no header output when Filter is On). Provided that PerlSendHeader is On, if I set it to Off, the headers always show up in the output. I

Re: mod_perl and ssi

2000-05-14 Thread Ken Williams
[EMAIL PROTECTED] (Joshua Chamas) wrote: >Kenneth Lee wrote: >> >> which handler comes first? PerlHandler or mod_include? >> i want to have my PerlHandler generate a SSI skeleton and then >> pass it the mod_include's parser to insert some existing static >> HTMLs. push_handler() and set_handler()

Re: mod_perl and ssi

2000-05-14 Thread Vivek Khera
> "JC" == Joshua Chamas <[EMAIL PROTECTED]> writes: JC> Kenneth Lee wrote: >> >> i want to have my PerlHandler generate a SSI skeleton and then >> pass it the mod_include's parser to insert some existing static >> HTMLs. push_handler() and set_handler() doesn't work for me. JC> To my knowle

Re: mod_perl and ssi

2000-05-14 Thread Joshua Chamas
Kenneth Lee wrote: > > which handler comes first? PerlHandler or mod_include? > i want to have my PerlHandler generate a SSI skeleton and then > pass it the mod_include's parser to insert some existing static > HTMLs. push_handler() and set_handler() doesn't work for me. > > or is it better to p

mod_perl and ssi

2000-05-12 Thread Kenneth Lee
which handler comes first? PerlHandler or mod_include? i want to have my PerlHandler generate a SSI skeleton and then pass it the mod_include's parser to insert some existing static HTMLs. push_handler() and set_handler() doesn't work for me. or is it better to parse the skeleton myself? but i