in reply to Re: Perl on FastCGI on IIS?
in thread Perl on FastCGI on IIS?

Thanks. I did post to that list, but there doesn't seem to be anyone running this configuration. Let me just post some of my config settings here and please tell me if anything jumps out at you:

AppApth C:\perl\bin\perl.exe Args [empty] BindPath php-fcgi
I'm especially unsure about the BindPath. Should I change that, or is it wired into the DLL?

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); }