in reply to Perl on FastCGI on IIS?

I no longer use it on IIS, sorry. The place to look for answers is http://groups.yahoo.com/group/fastcgi-developers/. You can post questions there and the developers are around (although it is not as friendly as the monastery).

update: this list is actually a mirror from http://www.fastcgi.com/archives/fastcgi-developers/, which is not searchable.

Replies are listed 'Best First'.
Re: Re: Perl on FastCGI on IIS?
by perrin (Chancellor) on Sep 20, 2002 at 16:03 UTC
    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); }
Re: Re: Perl on FastCGI on IIS?
by fglock (Vicar) on Sep 23, 2002 at 12:53 UTC

     BindPath is a file used for inter-program communication. Another option is to use a  Port (I prefer to use Port).

    This site gives some more detailed explanation about FCGI configuration options: http://www.os390.ilstu.edu/Docs/icswg012.html (It is not IIS specific).