I'm not quite sure what you mean by "IE5.5 isn't." What is it not doing? I'm assuming you mean it just hangs on the CGI page. If you're worried about buffering try telnetting to your web server by hand and request the CGI script. This would let you see what the browser sees.
$ telnet www.example.com 80
GET /cgi-bin/script.pl HTTP/1.0
(Hit return twice after the 2nd line.) I suspect that the redirect line is coming promptly, but since your script is still "pausing", the browser is waiting for it to complete any data the server/script is going to send with that request. Try either closing STDOUT or
fork your script, with the child performing the additional processing and the parent cleaning up and exiting. This should allow the HTTP transaction to complete and the browser to follow through with the redirect request.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.