in reply to Re: Perl on FastCGI on IIS?
in thread Perl on FastCGI on IIS?
I'm especially unsure about the BindPath. Should I change that, or is it wired into the DLL?AppApth C:\perl\bin\perl.exe Args [empty] BindPath php-fcgi
Here's the test script I'm trying (taken straight from FCGI POD):
use FCGI; my $count = 0; my $request = FCGI::Request(); while($request->Accept() >= 0) { print("Content-type: text/html\r\n\r\n", ++$count); }
|
|---|