Hi,
I am trying to get an example working to get me started but all I get is a
message:
"CGI Timeout
The specified CGI application exceeded the allowed time for processing. The
server has deleted the process."

I am working with IIS on NT.
I have installed perl and configured IIS to associate .pl and .cgi with the
perl executable.
I have also given permissions to the user IIS is running as to the cgi file.

The file is:

#!h:\perl\bin\perl.exe

   use CGI ':standard';

    print header();
    print start_html();

    for $i (param()) {
        print "<b>", $i, "</b>: ", param($i), "<br>\n";
    }

    print end_html();

Please help.
Thx, Emma.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to