in reply to Weird HTML::Mason error

HTML::Mason::ApacheHandler is not a PerlModule as far as I know, by that i mean the directive 'PerlModule' cannot be used for a response handler. It is a response handler like ModPerl::Registry.

Use the directive - 'PerlResponseHandler HTML::Mason::ApacheHandler' in your location block instead. Something along the lines of ...

<LocationMatch "(\.html|\.css)$">
SetHandler perl-script
PerlResponseHandler HTML::Mason::ApacheHandler
</LocationMatch>

Hope that helps.

GoCool

Replies are listed 'Best First'.
Re^2: Weird HTML::Mason error
by tomazos (Deacon) on Aug 01, 2005 at 17:32 UTC