in reply to mod_perl and HTTP::Mason acting funky
2. your images are being served by mason, and are probably coming with the leading part of the HTML from the autohandler (or similar, depending on your setup.)
consider using a <LocationMatch ...> instead:
see Controlling Access via Filename Extension<LocationMatch "\.html$"> SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler PerlSetVar MasonDeclineDirs 0 </LocationMarch> <LocationMatch "(\.m(html|txt|pl)?|dhandler|autohandler)/?$"> SetHandler perl-script PerlInitHandler Apache::Constants::NOT_FOUND PerlSetVar MasonDeclineDirs 0 </LocationMatch>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: mod_perl and HTTP::Mason acting funky
by Anonymous Monk on Aug 30, 2006 at 12:59 UTC | |
by mreece (Friar) on Aug 30, 2006 at 16:45 UTC |