Thread overview
DFastCGI
Nov 22, 2011
bioinfornatics
Nov 22, 2011
Dejan Lekic
Nov 22, 2011
Kai Meyer
Nov 23, 2011
bioinfornatics
Nov 23, 2011
mta`chrono
Nov 23, 2011
bioinfornatics
November 22, 2011
dear, i started to interface fastcgi to D https://github.com/bioinfornatics/DFastCGI

They are a Readme and some example for quick start

at this time take example from examples/test3_fcgiapp.d

Any help are welcome


Thanks

November 22, 2011
Good news! This should be a part of the Deimos organisation. :) Also, the post should be in the D.announce newsgroup. :)

Well-done!

November 22, 2011
On 11/22/2011 07:26 AM, bioinfornatics wrote:
> dear, i started to interface fastcgi to D https://github.com/bioinfornatics/DFastCGI
>
> They are a Readme and some example for quick start
>
> at this time take example from examples/test3_fcgiapp.d
>
> Any help are welcome
>
>
> Thanks
>

I don't see a test3_fcgiapp.d, but I've tested the test_fcgiapp on CentOS 6 with dmd (the Fedora rpm works great).

Once I fixed the build script to work properly on my machine, everything else worked out of the box. I installed fastcgi fresh on my server just to test this, no extra config required.

I'm not very good with github, or I would have forked, and submitted a pull request.


November 23, 2011
Le mardi 22 novembre 2011 à 13:30 -0700, Kai Meyer a écrit :
> On 11/22/2011 07:26 AM, bioinfornatics wrote:
> > dear, i started to interface fastcgi to D https://github.com/bioinfornatics/DFastCGI
> >
> > They are a Readme and some example for quick start
> >
> > at this time take example from examples/test3_fcgiapp.d
> >
> > Any help are welcome
> >
> >
> > Thanks
> >
> 
> I don't see a test3_fcgiapp.d, but I've tested the test_fcgiapp on CentOS 6 with dmd (the Fedora rpm works great).
> 
> Once I fixed the build script to work properly on my machine, everything else worked out of the box. I installed fastcgi fresh on my server just to test this, no extra config required.
> 
> I'm not very good with github, or I would have forked, and submitted a pull request.

Thanks i will fix it

November 23, 2011
IIRC there are two version of fastcgi / fgci ? The one is using stdin, stdout for communication and the application is running as a child of the webserver. And the other is running as a standalone application using unix sockets for communcation. Is DFastCGI able to handle both?
November 23, 2011
Le mercredi 23 novembre 2011 à 21:40 +0100, mta`chrono a écrit :
> IIRC there are two version of fastcgi / fgci ? The one is using stdin, stdout for communication and the application is running as a child of the webserver. And the other is running as a standalone application using unix sockets for communcation. Is DFastCGI able to handle both?

You can use both directly with fastcgi.c.fcgiapp
the highter level do not works yet