vbrtrmn has asked for the wisdom of the Perl Monks concerning the following question:
It seems to work okay on my Mandrake box and Cobalt RaQ, but not so well on my windows machine... and no, perl.exe is not in my cgi-bin :)#!perl.exe print "$ENV{'SERVER_PROTOCOL'} 200 OK\n"; print "Server: $ENV{'SERVER_SOFTWARE'}\n"; print "Content-type: text/plain\n\n"; $| = 0; for ($loop = 10; $loop >= 0; $loop--) { print "$loop\n"; sleep (1); } print "Blast Off!\n"; exit (0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: NPH Scripts on Apache under Win32
by gellyfish (Monsignor) on Feb 23, 2002 at 13:13 UTC | |
by vbrtrmn (Pilgrim) on Feb 23, 2002 at 15:42 UTC |