summaryrefslogtreecommitdiff
path: root/sapi/cgi/libfcgi
Commit message (Collapse)AuthorAgeFilesLines
* Fixed win32 build.Ilia Alshanetsky2004-02-101-1/+1
| | | | | | | | Fixed building of libfcgi when PHP is built from another directory. Added missing headers needed for wait(). Removed duplicate signal.h header. Removed unneeded variables.
* fix potential buffer overrunStanislav Malyshev2003-12-071-2/+7
|
* Windows compile fix (patch by sfox@php.net).Edin Kadribasic2003-11-131-3/+0
|
* C++ -> C commentsBen Mansell2003-03-051-1/+1
|
* aparently did not add these on headShane Caraveo2002-12-022-0/+466
| | | | | removed ssize_t which was causing problems, and not in libfcgi anyway
* Fix CGI to match cgi spec.Shane Caraveo2002-12-012-25/+55
| | | | | | | | | | | | This patch properly fixes support for CGI in PHP. For backwards compatible broken behaviour, cgi.fix_pathinfo can be set to zero in php.ini. CGI failed to work under apache at all, either using the cgi-script directive or as a ScriptAlias setup. Typicaly it would try to parse itself. This will still happen if you dissable fix_pathinfo, and set DISCARD_PATH. This also fixes PATH_INFO, and finally we can run pres2 under cgi or fastcgi. This patch has been tested under Apache 1.3, 2.0, IIS, as both cgi and fastcgi, on Windows and OSX. A followup patch with build stuff for linux will follow.
* configure now supports building the cgi-fcgi moduleShane Caraveo2002-11-265-113/+124
| | | | | configure --enable-fastcgi
* fixes for unix, untestedShane Caraveo2002-10-131-14/+17
| | | | | | remove exit calls fix a couple function definitions
* fix shutdown issuesShane Caraveo2002-10-131-19/+13
|
* fix invalid handle issue that shutdown php fastcgi prematurlyShane Caraveo2002-10-131-9/+6
| | | | | fix checking os name for impersonation
* add security impersonation feature for running under IIS securityShane Caraveo2002-03-182-9/+153
|
* fix closing pipesShane Caraveo2002-03-171-14/+37
| | | | | fix buffer overrun
* Fix warning, hope this is okay.Sebastian Bergmann2002-03-111-1/+0
|
* combine fastcgi capability with regular cgi binaryShane Caraveo2002-03-1015-0/+7998
include fastcgi library for ease of windows builds NOTE: included fastcgi library is modified for thread safety, but fastcgi support in cgi_main.c is only written for single threaded serving. This does not present any issue for using fastcgi.