You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Halil Ağın <ha...@gmail.com> on 2008/03/27 17:08:42 UTC

[users@httpd] how to change the response text of the httpd server while the server is sending its response text to the client.

Hello List;

I want to change the response text of the httpd server while the server is
sending its response text to the client.


However, i wnat to this action by looking at the its html header.
If html header has a special meta tag, i want to add a previosly determined
html code  as  a last html element of the html body.


I searched on the web and looked apache module list.
It seems that i can do this job by the help of mod_filter.
But i am not sure, maybe i have to write a apache module.

I am still searching, but maybe you know the answer.
How can i do this jod?


Thank you very much,

-halil agin.

Re: [users@httpd] how to change the response text of the httpd server while the server is sending its response text to the client.

Posted by Joshua Slive <jo...@slive.ca>.
On Thu, Mar 27, 2008 at 12:08 PM, Halil Ağın <ha...@gmail.com> wrote:
> Hello List;
>
> I want to change the response text of the httpd server while the server is
> sending its response text to the client.
>
>
> However, i wnat to this action by looking at the its html header.
> If html header has a special meta tag, i want to add a previosly determined
> html code  as  a last html element of the html body.
>
>
> I searched on the web and looked apache module list.
> It seems that i can do this job by the help of mod_filter.
> But i am not sure, maybe i have to write a apache module.
>
> I am still searching, but maybe you know the answer.
>  How can i do this jod?

For prototyping, you could use mod_ext_filter. But if you need
high-performance, you'll probably need a custom module.

Joshua.