http://qs321.pair.com?node_id=209976


in reply to Re: Using the modules I want to use.
in thread Using the modules I want to use.

Thanks, When I use this use GD 1.27; I get Internal Server Error. [Sat Nov  2 13:22:10 2002] [error] [client 12.234.205.16] Premature end of script headers: /u/web/dom/cgi-local/whichversion.cgi

Replies are listed 'Best First'.
Re: Re: Re: Using the modules I want to use.
by George_Sherston (Vicar) on Nov 03, 2002 at 01:16 UTC
    I'd guess that whicversion.cgi is sending output without an http header. If that's right then you need either
    use CGI qw/:standard/; print header;
    or just
    print "Content-type: text/html\n\n";
    before any print commands in your script, which will allow the output from the script to appear in the browser window.

    § George Sherston