dsb has asked for the wisdom of the Perl Monks concerning the following question:
ok,ok...maybe Windows is the start of my problems. Regardless, I have to have this on my Windows partition so my girlfriend can use this Web-App. The code for the test script is exactly the code from Ovid's CGI Course except for the she-bang line, for the sake of testing.[Mon Feb 19 15:55:27 2001] [error] [client 127.0.0.1] couldn't spawn c +hild process: c:/program files/apache group/apache/cgi-bin/test.pl
Any help would be greatly appreciated.#!c:\Perl\bin -wT use strict; use CGI; my $query = CGI->new(); print $query->header( "text/html" ), $query->start_html(-title => "My First CGI Script", -bgcolor => "#ffffcc" ), $query->h1( "This is a pretty lame Web page" ), $query->p( "Who is this Ovid guy, anyway?" ), $query->end_html;
- kel -
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI Problems
by dws (Chancellor) on Feb 20, 2001 at 02:08 UTC | |
|
Re: CGI Problems
by arturo (Vicar) on Feb 20, 2001 at 02:39 UTC | |
|
Re: CGI Problems
by marius (Hermit) on Feb 20, 2001 at 02:09 UTC |