Ok. I know threads about this have been posted before but none have the answer I need. So here goes again...
This is my script:
When I try this from an html page:
I get this before the output I want from the script:
Obviously the only thing I want displayed in my browser is:
Yes, I am properly configured for SSI.
Yes, my server accepts the <!--exec cgi="... command.
I just need to know how to get rid of / suppress that response header stuff when I run this on an IIS server. I get exactly what I want from Apache
but I need for this to work on IIS as well
.
Thanks to anyone who can help.
This is my script:
#!/usr/bin/perl -w
use strict;
print "Content-type: text/html\n\n";
print "<p>Boo, Wuzza wuzza... Infinity!!!</p>";
When I try this from an html page:
<!--#exec cgi="/cgi-bin/ssicalltest.pl" -->
I get this before the output I want from the script:
HTTP/1.1 200 OK Date: Tue, 02 Jul 2002 20:05:50 GMT Server: Microsoft-IIS/5.0 Content-type: text/html
Obviously the only thing I want displayed in my browser is:
Boo, Wuzza wuzza... Infinity!!!
Yes, I am properly configured for SSI.
Yes, my server accepts the <!--exec cgi="... command.
I just need to know how to get rid of / suppress that response header stuff when I run this on an IIS server. I get exactly what I want from Apache


Thanks to anyone who can help.