You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modproxy-dev@apache.org by senthil kumar <bs...@gmail.com> on 2006/05/05 13:04:08 UTC

problem - mod_proxy_html

I am using mod_proxy_html module for rewritting urls. It works fine..I faced
the problem when i try to rewrite the following case

<img
onclick="fine();..........................................................<more
than 350 char's>
............................................................"

Inside the filter methods in mod_proxy_html reads from buckets half of the
data from the above line and passes into the parser and write it with quotes
and greater symbol "> and then reads the remaining half of the data and
write it.


Read first half data and write the output like below

<img onclick="fine();.....<read half of data>.......">

Read the remaining data and write the output below

................................">

The output of the file is not in proper format . It causes issues while
displaying in browser.

The whole output is:-
<img onclick="fine();.....<read half of
data>.......">................................">

How to solve this problem ?

Thanks,
bsenthil