Eric Covener wrote:
# where the actual fastcgi, the php interpreter, lives
ScriptAlias /fcgi-bin /stuff/cgi-bin
Options ExecCGi
SetHandler fastcgi-script
Action my-fastcgi /fcgi-bin/php-fastcgi
AddHandler my-fastcgi .php
Alias /foo /usr/local/foo
Alias worked great. Thanks
-
On Sun, Aug 31, 2008 at 1:11 AM, Jay Sprenkle <[EMAIL PROTECTED]> wrote:
> Eric Covener wrote:
>>
>> On Sat, Aug 30, 2008 at 7:45 PM, Jay Sprenkle <[EMAIL PROTECTED]>
>> wrote:
>>
>>
>>>
>>> All fastcgi URLs are supposed to be sent to the fastcgi program to be
>>> handled, not served directly and
Eric Covener wrote:
On Sat, Aug 30, 2008 at 7:45 PM, Jay Sprenkle <[EMAIL PROTECTED]> wrote:
All fastcgi URLs are supposed to be sent to the fastcgi program to be
handled, not served directly and don't exist in the docroot.
(That program will reads the url 'test.fcgi' and produces a page fr
On Sat, Aug 30, 2008 at 7:45 PM, Jay Sprenkle <[EMAIL PROTECTED]> wrote:
> All fastcgi URLs are supposed to be sent to the fastcgi program to be
> handled, not served directly and don't exist in the docroot.
> (That program will reads the url 'test.fcgi' and produces a page from a
> 'test' templa
Eric Covener wrote:
On Sat, Aug 30, 2008 at 3:12 PM, Jay Sprenkle <[EMAIL PROTECTED]> wrote:
SetHandler fastcgi-script
Inherits Options +ExecCGI from somewhere?
I don't believe this is required for a static fastcgi program, but I'll
try it.
Action fastcgi-test /Debug/pluwt.ex
On Sat, Aug 30, 2008 at 3:12 PM, Jay Sprenkle <[EMAIL PROTECTED]> wrote:
>
> SetHandler fastcgi-script
>
Inherits Options +ExecCGI from somewhere?
> Action fastcgi-test /Debug/pluwt.exe
> AddHandler fastcgi-test .fcgi
> If I then try
> http://localhost:8080/test.fcgi
> The log tells me apache
Good afternoon all,
I'm trying to setup Apache for use with a fastcgi program I'm developing.
I'm not having any luck so I thought it was time to ask for help.
Here's what I'm trying to accomplish:
I'd like to have all requests with the extension ".fcgi" directed to a
single fastcgi program. Th