Re: perl_mod

2007-05-15 Thread Deane . Rothenmaier
>- 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. --

Re: perl_mod

2007-05-14 Thread Foo JH
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

perl_mod

2007-05-14 Thread Mario R. Sanchez, Ph.D.
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