Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hello, I was wondering if anyone has seen issues with IE5.5 and output buffer flushing with CGI.pm. The script I have written generates a page, redirects the browser to that page, then continues processing. Netscape 4.x and IE5.0 are working, IE5.5 isn't. Here is the code snipit: #!/usr/local/perl/bin/perl use CGI; $q = new CGI; ... ... Build html page (build array, open file, print array, close file) ... ... $FLUSH = $|; $| = 1; # Turn off buffering print $q->redirect(-uri=>"http://host.bla/OCFA/$USER.html"); $| = $FLUSH; ... ... Continue processing. Some of the processing after this point uses system(); Any pointers would be appreciated.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI.pm Flushing and Internet Explorer 5.5
by Fastolfe (Vicar) on Nov 13, 2000 at 19:57 UTC | |
by Anonymous Monk on Nov 16, 2000 at 00:34 UTC | |
|
(Ovid) Re: CGI.pm Flushing and Internet Explorer 5.5
by Ovid (Cardinal) on Nov 13, 2000 at 21:22 UTC |