in reply to Re: mod_perl - ghost values
in thread mod_perl - ghost values

Thanks for the post Corion. All variables in the script are declared with 'my'. There were some variables that were declared as 'our' but have since changed to 'my'. I'm using my $q = new CGI() and using CGI::Session as well if that helps any. There are some additional modules as well but all variables inside them are also declared with 'my' except the 'our @ISA = qw(Exporter);' line.

Replies are listed 'Best First'.
Re^3: mod_perl - ghost values
by Corion (Patriarch) on Aug 19, 2014 at 16:13 UTC

    So, does running Apache in single process mode change anything?

    Also note that "single process" should also mean single-threaded.