Weird CGI Caching problem

2004-04-07 Thread Jeremy Silva
I'm having a problem with Mod_perl 2.0 that I cannot seem to find any help on. I found some help on Mod Perl's caching (http://bulknews.net/lib/mod_perl_guide/porting.html) and tested some of his scripts. I was having some problems in some of my conversions, so I decided to modify his scripts

Re: Weird CGI Caching problem

2004-04-09 Thread Jeremy Silva
e CGI object? Jeremy Perrin Harkins wrote: On Wed, 2004-04-07 at 17:03, Jeremy Silva wrote: use CGI; my $counter; my $cgi; sub run{ print "Content-type: text/plain\r\n\r\n"; print "HERE"; $counter = 0; $cgi=null; You don't n

Re: Weird CGI Caching problem

2004-04-09 Thread Jeremy Silva
: Perrin, Did both things you mentioned. I upgraded to the latest CGI for ActiveState Perrin Harkins wrote: On Wed, 2004-04-07 at 17:03, Jeremy Silva wrote: use CGI; my $counter; my $cgi; sub run{ print "Content-type: text/plain\r\n\r\n"; print "HERE";

Re: Weird CGI Caching problem

2004-04-14 Thread Jeremy Silva
quot;name"); print "Name=$str Counter is equal to $counter !\r\n"; } 1; counter.pl _ use strict; require "./mycounter.pl"; my $cgi = CGI->new(); run($cgi); Perrin Harkins wrote: On Fri, 2004-04-09 at 12:00, Jeremy Silva wrote: The simple answer,