in reply to Re: problems using Windows server
in thread problems using Windows server
I found this 'hello world' script on the server and added the use cgi::carp line which is commented out. It runs like this, but with the comment hash taken out I get the same error message. I hope this helps to ring a bell for someone...
#use CGI::Carp qw(fatalsToBrowser warningsToBrowser); print "Content-Type: text/html\n\n"; print "<HTML>\n"; print "<HEAD>\n"; print "<TITLE>Hello World</TITLE>\n"; print "</HEAD>\n"; print "<BODY>\n"; print "<H4>Hello World</H4>\n"; print "<P>\n"; print "Your IP Address is $ENV{REMOTE_ADDR}.\n"; print "<P>"; print "<H5>Have a nice day</H5>\n"; print "</BODY>\n"; print "</HTML>\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: problems using Windows server
by RazorbladeBidet (Friar) on Feb 11, 2005 at 16:12 UTC | |
by Anonymous Monk on Feb 11, 2005 at 16:45 UTC |