Perl Script is Downloaded When Using Netscape 3.0Last reviewed: October 30, 1997Article ID: Q158732 |
The information in this article applies to:
SYMPTOMSWhen you use browsers that have a mime mapping for .pl or .cgi file the browser may try to download the script rather than executing it.
CAUSEWhen the following header information is not present as the first line of a CGI script, a browser with a mime mapping for the file type may try to download the script rather than execute it:
print "HTTP/1.0 200 OK\n"; RESOLUTIONMake sure your CGI scripts return the following as the first line of the CGI header response:
print "HTTP/1.0 200 OK\n"; |
Additional query words: iis cgi script download
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |