[MP2] How to turn off caching?

2005-05-30 Thread Foo Ji-Haw
Hi guys, If I am not mistaken, modperl tends to cache all output until the script is completed, then it sends out the page. If I want to (for example) print a period (.) back to the browser every second, what do I need to do? I tried $| but it does not work. Thanks in advance for your advice

Re: a mystery.. need help

2005-05-30 Thread Luinrandir Insight
ok.. thanks and since thats not me.. i'm gone. Lou - Original Message - From: "jonathan vanasco" <[EMAIL PROTECTED]> To: "Luinrandir Insight" <[EMAIL PROTECTED]> Cc: Sent: Monday, May 30, 2005 9:23 AM Subject: Re: a mystery.. need help > This list is just about mod_perl -- the apache m

Re: a mystery.. need help

2005-05-30 Thread jonathan vanasco
This list is just about mod_perl -- the apache module that integrates a perl interpreter into apache To learn about apache modules, look on a website like perlmonks.com On May 29, 2005, at 10:10 PM, Luinrandir Insight wrote: OK.. first .. if I have the wrong list.. if this list is just about

RE: Previous Pages/Requests appearing

2005-05-30 Thread cfaust-dougot
Sorry, should have said I was running MP2 under RH   Apache/2.0.54 (Unix) mod_perl/2.0.0 Perl/v5.8.0 configured   From: cfaust-dougot [mailto:[EMAIL PROTECTED]Sent: Mon 5/30/2005 10:30 AMTo: modperl@perl.apache.orgSubject: Previous Pages/Requests appearing Folks,   I am having problems wi

Previous Pages/Requests appearing

2005-05-30 Thread cfaust-dougot
Folks,   I am having problems with previous pages/requests showing up on refreshes and/or the clicking on links not going to the proper page etc. etc.   Its a new server and I didn't think it was the code so I commented out all mod_perl scripts and added the simple script below.   I also got th

Re: a mystery.. need help

2005-05-30 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 1. To parse Parameters you should use: ~ a) CGI.pm ~ ---8<--- ~ my $q = new CGI(); ~ my %form; ~ foreach( $q->param() ) { ~ $form{$_} = $q->param($_); ~ } ~ -