On Mon, 2007-01-15 at 14:31 -0800, iNetForce wrote: > package Recipes; [...] > PerlModule go::Recipes > <Location /go/> > SetHandler perl-script > PerlHandler go::Recipes > Options +ExecCGI > PerlSendHeader On > allow from all > </Location>
That module says it's package is "Recipes", not "go::Recipes". You need to change the PerlModule and PerlHandler directives to load "Recipes". You should be seeing some junk in your error_log when you try to load a module that doesn't exist, as you are now. - Perrin