On Thu, 2003-10-23 at 22:22, justin wrote: > # runtime, this location generates the error, browser sees 500 internal server error > <Location ...> > SetHandler perl-script > PerlHandler Apache::RegistryBB > </Location>
As Geoff pointed out, this is a method handler, so try this instead: PerlHandler Apache::RegistryBB->handler If you don't call it as a method, it can't inherit it from RegistryNG. - Perrin