>- even if those variables are re-initialized
Dunno if this would help, but... have you tried undefining your variables?
undef( $var );
Just a thought.
Deane Rothenmaier
Programmer/Analyst
Walgreens Corp.
847-914-5150
Reality is whatever refuses to go away when I stop believing in it. --
Mario, (are you one of the Mario bros?)
In modperl, scripts do not terminate once completed. This is for
performance reasons. Even the die() function has been overloaded to
avoid this. As such your global variables will remain initialised at the
start of the next HTTP call.
Take a look at:
htt
hello perl gurus
what is the proper way for a perl program to end when used in a apache
configuration w/mod_perl?
use CGI qw(:standard);
use DBI;
these are my only use ...
before mod_perl everything worked fine. servers were upgraded to mod_perl
and all the scripts now seem to maintain values f