Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache Server - script runs in IE, not Netscape

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I'm running a couple of search scripts on an Apache server and I can not get the pages to load properly in Netscape. Netscape wants to save the document or spawn Wordpad to view the page.
I've tried these:

1. print "Content-type: text/html\n\n";

2. use CGI qw/:standard/;
print header;

3. Printing the content-type in META tags

4. $r->content_type('text/html');

Please help!

diffenc@swosu.edu

Scripts are located at:

(Both Searchable Directories)
 
try :

print "Content-type: text/html\n\r\n\r";

shouldn't matter, but, that's what i've always been told to use. also, you may want to post your code, as it may not be a problem with the headers. adam@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top