in reply to Cgi script with no output to webpage?
It sounds like the SSI Include mechanism you're using expects HTML output back. You should check if there's an "administrative include" or "no output" include alternative supported.
But what happens if you just return this:
(note the 3rd newline)print "Content-type: text/html\n\n\n";
It's valid html, and it shouldn't mess up formatting much...
Another alternative would be to return a 1x1 IMG tag to a pixel-sized GIF file, I guess... Or just a header and empty html tags:
Hope this helps!print "Content-type: text/html\n\n<html></html>\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Cgi script with no output to webpage?
by Your Mother (Archbishop) on Aug 11, 2008 at 00:06 UTC | |
|
Re^2: Cgi script with no output to webpage?
by pot1906dk (Initiate) on Aug 10, 2008 at 10:42 UTC |