Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Couldn't spawn child process

Status
Not open for further replies.

thendal

Programmer
Aug 23, 2000
284
0
0
Hi all!

I have installed the apache webserver and active state perl
in my laptop which is having windows 2000.when i try to run a perl script,it gives a internal server error the perl script is very simple,

just having a print statement ..when i look into the error log it states that couldn't spawn the child process ...

Is there any setting i need to change...


here is the script


#!c:\perl\bin\perl.exe
use CGI;
$op=new CGI;
print $op->header;
print &quot;<h1>This is a Test</h1>&quot;;

Any help will be appriciated..

Thanks





 
Well, have you tried #!c:/perl/bin/perl.exe?

It's important that the first line uses forward slashes instead of backslashes
 
Yes I missed the #,It worked Thankx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top