in reply to Re^2: Apache::Registry - shared variable?
in thread Apache::Registry - shared variable?

Oh, and to answer your other question...
$VAR1 = { 'MOD_PERL_API_VERSION' => 2, 'MOD_PERL' => 'mod_perl/2.0.4' };

In Apache config, though:

PerlResponseHandler ModPerl::Registry

Our code is "not mod_perl safe", so we were told to use Registry to work around that.

Replies are listed 'Best First'.
Re^4: Apache::Registry - shared variable?
by Anonymous Monk on Jun 21, 2013 at 07:44 UTC

    Our code is "not mod_perl safe", so we were told to use Registry to work around that.

    Yup, Registry is used to run .cgi's under mod_perl but isn't a cure-all, it won't magically make sure you're using CGI.pm correctly or that you're Coping with Scoping -- see (this which you probably already saw) for some issue CGI to mod_perl Porting. mod_perl Coding guidelines and tweak your code