On Wed, 2006-06-07 at 16:49 +0100, Dani Pardo wrote:
>   I've installed apache 2.0.58 with modperl 2.0.2 from source, and
> when I change a script on disk, the results get automatically
> reflected on the browser (I don't have to restart apache). I didn't
> setup Apache2::reload or anything like that. Is that normal?
> 
>   My apache conf is something like this:
> 
>    <FilesMatch "\.pl$">
>                         SetHandler perl-script
>                         PerlHandler ModPerl::Registry
>                         PerlResponseHandler ModPerl::Registry

That's why -- ModPerl::Registry checks your script for changes on every
hit.  This will not happen for .pm files that you use from your script
though.  You'd need to use Apache2::Reload for them.

- Perrin

Reply via email to