in reply to Re^5: Apache Registry with Server Side Includes
in thread Apache Registry with Server Side Includes

Hmm.  Are you sure cou haven't disabled SetupEnv somewhere (e.g. globally)?  It should be "on" by default, but maybe try enabling it explicitly:

... PerlOptions +SetupEnv

Replies are listed 'Best First'.
Re^7: Apache Registry with Server Side Includes
by bbfan (Novice) on Jan 02, 2012 at 20:35 UTC
    Well, that was worth a try. Explicitly setting it to plus had no noticeable effect; however, setting it to "minus" wreaked havoc. Will post over on the mod_perl list - they may be able to offer additional advice.
        Yes, the error and host logs always have a tail on them. Also, the actual registry script that is being debugged contains:

        # Debug / Logging our $debug = 1; use CGI::Carp qw(name=XXX); local $SIG{__WARN__} = \&Carp::cluck; # Begin use strict; use warnings; use diagnostics; ...

        Open to more suggestions... Thanks!