Discussion:
problem - mod_proxy_html
senthil kumar
2006-05-05 11:04:08 UTC
Permalink
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

Loading...