summaryrefslogtreecommitdiff
path: root/sapi/cgi/cgi_main.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix build.Sebastian Bergmann2002-05-021-2/+2
|
* updated cgi warning notice.James Cox2002-05-021-0/+2
|
* CGI/CLI take file and dir for -c option by this.Yasuo Ohgaki2002-04-121-15/+15
| | | | | @ Both 'file' and 'path to php.ini' is allowed for "-c" cli/cgi option. (Yasuo)
* fix quotingWez Furlong2002-04-021-1/+1
|
* just did...James Cox2002-04-021-1/+0
|
* updated the alert sent to the browser. removed the verbosity, and linked to ↵James Cox2002-04-021-14/+6
| | | | more info.
* add security impersonation feature for running under IIS securityShane Caraveo2002-03-181-0/+18
|
* woohoo, take some credit!Shane Caraveo2002-03-101-0/+2
|
* children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var.Shane Caraveo2002-03-101-1/+1
|
* combine fastcgi capability with regular cgi binaryShane Caraveo2002-03-101-13/+255
| | | | | | | | | 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.
* - Put them back (and do it right)Derick Rethans2002-03-061-0/+6
|
* - Remove unused variablesDerick Rethans2002-03-061-2/+0
|
* add comment for IIS usersShane Caraveo2002-03-011-14/+15
| | | | | fix some whitespace
* This is much better. With FORCE_CGI_REDIRECT turned on by default for ↵Shane Caraveo2002-03-011-7/+14
| | | | | | | | | | | | | compilation, we can now define this in the ini file. So it can be turned on for apache, turned off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS' environment var can be defined in case some web server out there needs it. new ini vars cgi.force_redirect 0|1 cgi.redirect_status_env ENV_VAR_NAME
* fix force redirect crash under multithreaded compileShane Caraveo2002-03-011-8/+22
| | | | | | | should be discused: fix redirect detection to only work with apache or netscape, where we know they set an environment variable regarding redirect. IIS has no security issue here. Don't know about other windows web servers.
* - Make the errorcode 255. (Doing docs right away)Derick Rethans2002-02-151-2/+2
|
* - Let php_execute_script return 0 on failure and 1 on sucess, and changeDerick Rethans2002-02-141-1/+5
| | | | | SAPIs accordingly. (Andrei, Derick)
* Remove obsolete CG(extended_info) = 0 calls, we already do this in ↵Sebastian Bergmann2002-02-021-1/+0
| | | | zend_set_default_compile_time_values().
* Fixed bug #9041 and others in the same class (patch by pete.lee@ubs.com)Edin Kadribasic2002-01-201-1/+3
|
* reimplement extension listingShane Caraveo2002-01-181-2/+7
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* @- Added -w option to the cgi-version. This will remove all comments andThies C. Arntzen2001-12-081-1/+14
| | | | | @ whitespace from teh script. (Thies)
* fixed output problem with output buffering handler.Rui Hirokawa2001-11-111-0/+1
|
* Convert PATH_TRANSLATED for RISC OSAlex Waugh2001-11-041-0/+9
|
* Undo Z_ subst for sapi and ext/yazJeroen van Wolffelaar2001-09-271-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Revert an old bogus patchZeev Suraski2001-08-141-7/+9
|
* Use zend_first_tryZeev Suraski2001-08-081-1/+1
|
* some more eliminate-fetches-or-escalate-them-at-leastSascha Schumann2001-08-051-5/+5
|
* more tsrm cleanupSascha Schumann2001-08-051-8/+8
|
* delay module_shutdown even further. zend_try and _catch need the currentThies C. Arntzen2001-08-051-1/+2
| | | | | | globals as well. zeev, is this a chicken & egg problem?
* module_shutdown() calls ts_free_thread in ZTS mode. so SG() cannot be accessedThies C. Arntzen2001-08-051-1/+2
| | | | | afterwards.
* - TSRMLS_FETCH workZeev Suraski2001-08-051-3/+3
| | | | | - whitespace fixes
* Get rid of a couple of bogus persist_alloc()'s, and some cleanupZeev Suraski2001-08-031-10/+7
|
* More TSRMLS_FETCH annihilation. Enough for today...Zeev Suraski2001-07-311-1/+1
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-8/+9
|
* fix compileThies C. Arntzen2001-07-301-1/+1
|
* Zend compatibility patchZeev Suraski2001-07-301-1/+1
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-18/+17
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-10/+12
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* Fix a corrupted memory accessZeev Suraski2001-07-271-3/+4
|
* - Fix __FILE__ in the main script in CGI/command line mode.Andi Gutmans2001-07-211-5/+6
|
* Improved bailout mechanism, supports nested bailouts a-la try..catchZeev Suraski2001-07-211-257/+253
| | | | | Note: You may *not* return directly from a catch block
* Improved interactive mode - it is now available in all builds, without any ↵Zeev Suraski2001-07-151-11/+1
| | | | significant slowdown
* Fix a major thread safety bug in the output mechanismZeev Suraski2001-07-021-0/+3
| | | | | @- Fixed a major memory corruption bug in the thread safe version (Zeev)
* Spit out errorsZeev Suraski2001-06-211-0/+6
|
* Remove bogus '.'.Sebastian Bergmann2001-06-061-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-7/+14
|
* The -c commandline option was not working at all, need to set the pathShane Caraveo2001-05-221-19/+25
| | | | | override before calling on the module startup.