Need Help With Apache::Filter (mod 1.x)

2003-03-11 Thread David Culp




I need help with the Apache::Filter and 
Apache::OutputChain modules.
I've read all the documentation and review the few 
examples. I've installed
the modules, but "it is still not 
working".

What I want to accomplish: I have done via Apache 
2.0 mod_ext_filter. However,
I am forced to revert back to Apache 1.3 for other 
reasons. After much reading much
(mod_perl website,google searches .. and this mailing list (week ago)), 
it looks like Apache::Filter and 
Apache::OutputChain is the only way.

A Quick summary of what I want to do:
  * Change the 
Web Page Body ( i.e. s/something/something else) before it is
  
sent back to the client.

  * This server 
is primarily a proxy server for the clients


Any Examples of Apache::Filter would be greatly 
appreciated.

Thanks !
David



Re: Need Help With Apache::Filter (mod 1.x)

2003-03-11 Thread Stas Bekman
David Culp wrote:

Any Examples of Apache::Filter would be greatly appreciated.
http://www.cpan.org/authors/id/G/GE/GEOFF/Apache-Clean-0.05.tar.gz

p.s. Apache-Clean-2.x is for mp2.

__
Stas BekmanJAm_pH -- Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide --- http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com


Need Help With Apache::Filter

2003-03-11 Thread David Culp



I need help with the Apache::Filter and 
Apache::OutputChain modules.
I've read all the documentation and review the few 
examples. I've installed
the modules, but "it is still not 
working".

What I want to accomplish: I have done via Apache 
2.0 mod_ext_filter. However,
I am forced to revert back to Apache 1.3 for other 
reasons. After much reading much
(mod_perl website,google searches .. and this mailing list (week ago)), 
it looks like Apache::Filter and 
Apache::OutputChain is the only way.

A Quick summary of what I want to do:
  * Change the 
Web Page Body ( i.e. s/something/something else) before it is
  
sent back to the client.

  * This server 
is primarily a proxy server for the clients


Any Examples of Apache::Filter would be greatly 
appreciated.

Thanks !
David



Re: Need Help With Apache::Filter (mod 1.x) - Results

2003-03-11 Thread David Culp
 Stas  wrote:

 http://www.cpan.org/authors/id/G/GE/GEOFF/Apache-Clean-0.05.tar.gz

 p.s. Apache-Clean-2.x is for mp2.



Thanks Stas !
Looking in the tar file and at modperl_extra.pl, I was able to use
the syntax and methods/properties to update my perl file. I was able to
change some of the Body  of my default page !


* Now, I need to get it working with Proxy/Reverse Proxy.
(Having issues getting rid of the 'proxy:')
i.e.  ProxyPass  /  http://www.newsite.com/
   keeps being sent as proxy:http://www.newsite.com/

* Next, Get it working with SSL

* and Finally using it with RSA SecurID !
[I  already have SecurID working - but disabled until the other
items completed]

David