Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improved bailout mechanism, supports nested bailouts a-la try..catch | Zeev Suraski | 2001-07-21 | 1 | -86/+86 |
| | | | | | Note: You may *not* return directly from a catch block | ||||
* | Fix indentation of ./configure --help messages. | Sascha Schumann | 2001-05-12 | 1 | -1/+1 |
| | |||||
* | Add INSTALL_ROOT variable to specify install location. | Wilfredo Sanchez | 2001-04-03 | 1 | -1/+1 |
| | |||||
* | Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. | foobar | 2001-03-27 | 1 | -1/+1 |
| | | | | | # Heads up people! I tested this before committing but you never know.. | ||||
* | Altered README.Zeus to give instructions on building FastCGI. | Ben Mansell | 2001-03-19 | 1 | -2/+2 |
| | | | | | | Changed --with-zeus configure option into --with-isapi, since its more descriptive (and since there are now different ways to configure PHP+Zeus) | ||||
* | Added support for Zeus SSL client certificate information. | Ben Mansell | 2001-03-07 | 1 | -0/+61 |
| | | | | | | | Added SERVER_SIGNATURE to the environment. Submitted by: daniel@zeus.com | ||||
* | Thread hashtable was being initialized with a size of 1! Changed to 128 as | Ben Mansell | 2001-03-06 | 1 | -1/+5 |
| | | | | | | | | a more sensible number. # Also could change the 'expected resources' parameter from 1, but I # haven't tested that bit yet ---------------------------------------------------------------------- | ||||
* | Added PHP_AUTH_USER, PHP_AUTH_PW and PHP_AUTH_TYPE environment variables | Ben Mansell | 2001-02-27 | 1 | -0/+14 |
| | | | | | | | for Zeus/ISAPI, so basic authenication works. Submitted by: daniel@zeus.com | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Fixed non-threadsafe code: 'isapi_special_server_variables' was a static | Ben Mansell | 2001-02-16 | 1 | -2/+1 |
| | | | | | buffer, and not allocated per-connection. Bad bad bad! | ||||
* | @ Support Zeus 3.3.8 | Ben Mansell | 2001-01-16 | 1 | -23/+51 |
| | | | | | | | | | | | | | Added changes to environment variable manipulations, to support Zeus 3.3.8 and increase compatibility between Zeus/IIS/Apache. Now, URLs like http://foo.org/file.php/a/b/c/d work correctly. # While testing, it looks like IIS+ISAPI is mishandling URLs like the above. # The PATH_TRANSLATED given by ISAPI includes the /a/b/c/d bit of the URL, # so using this var to find the script file to open on disk will not work. # We now use SCRIPT_FILENAME if it is present (in Zeus 3.3.8) # IIS doesn't seem to set this variable, it might be necessary to mangle # SCRIPT_NAME and APPL_PHYSICAL_PATH together? | ||||
* | Fix output dir | Zeev Suraski | 2001-01-15 | 1 | -10/+2 |
| | |||||
* | - Implement CompareStringWithFile() | Zeev Suraski | 2001-01-15 | 1 | -3/+36 |
| | | | | | - Remove a stupid NULL assignment that slipped in the last commit | ||||
* | - Implement quick file comparing routine | Zeev Suraski | 2001-01-15 | 2 | -46/+71 |
| | | | | | | | | | - Fix crash - wait on the threads themselves, not on Event objects. It takes time between the time a thread signals the event, and the time it actually terminates (shutdown code) - so FreeLibrary() and the main() termination could occur before all of the threads terminated... | ||||
* | test now produce valid OK or FAIL. | Shane Caraveo | 2001-01-15 | 2 | -34/+59 |
| | |||||
* | dont do results if not using test files | Shane Caraveo | 2001-01-15 | 1 | -2/+2 |
| | |||||
* | clean up temp files | Shane Caraveo | 2001-01-15 | 1 | -0/+25 |
| | |||||
* | check files open | Shane Caraveo | 2001-01-15 | 1 | -1/+1 |
| | |||||
* | fix file reading, add results | Shane Caraveo | 2001-01-15 | 1 | -27/+43 |
| | |||||
* | Multithreaded stress test program for isapi module now supports phpt files | Shane Caraveo | 2001-01-15 | 3 | -92/+390 |
| | | | | | | still stuff to do before it's realy done, but does run the tests, just need to get it to compare results right now. | ||||
* | ignore blank lines | Shane Caraveo | 2001-01-08 | 1 | -15/+23 |
| | |||||
* | add notes on this program | Shane Caraveo | 2001-01-08 | 2 | -1/+19 |
| | |||||
* | stresstest is based on cgiwrap. it can be used to debug php4isapi.dll without | Shane Caraveo | 2001-01-07 | 2 | -0/+568 |
| | | | | | the use of an actual web server. | ||||
* | define flag to turn off exception handling | Shane Caraveo | 2001-01-07 | 1 | -2/+21 |
| | |||||
* | Many patches. I hope I remember them all: | Zeev Suraski | 2001-01-02 | 1 | -104/+154 |
| | | | | | | | | | - Make sapi_module available to external modules (PHPAPI) - Make the php.ini path reported in phpinfo() always point to real full path of the php.ini file - Optimized the ISAPI module not to read unnecessary server variables and read necessary variables at most once. | ||||
* | Add Release_TSDbg support. This mode compiles PHP with the release C runtime, | Zeev Suraski | 2000-12-26 | 1 | -0/+29 |
| | | | | | | but with optimizations disabled and with debug info. Some crashes can only be debugged using this mode. | ||||
* | Fix Zeus' behaviour with URL, SCRIPT_NAME, SCRIPT_FILENAME, REQUEST_URI | Ben Mansell | 2000-12-15 | 1 | -4/+32 |
| | | | | | | | | | environment variables PR: Submitted by: Reviewed by: Obtained from: | ||||
* | (Zeus) Re-added some server variables that will be used. | Ben Mansell | 2000-12-13 | 1 | -15/+17 |
| | | | | | Also added DOCUMENT_ROOT, was missing before for non-Win32 | ||||
* | 2nd step towards auto-credits | Hartmut Holzgraefe | 2000-11-20 | 1 | -0/+2 |
| | |||||
* | Update SAPI modules to interface with the new TSRM. | Zeev Suraski | 2000-11-18 | 1 | -1/+1 |
| | | | | | Enable thread-safety memory debugging in ISAPI when in debug mode | ||||
* | Unify handling of aborted connections | Sascha Schumann | 2000-10-29 | 1 | -1/+1 |
| | |||||
* | i'll place the reg file in the win32 folder | Daniel Beulshausen | 2000-10-22 | 1 | -5/+0 |
| | | | | | cause it doesn't really fit in this folder | ||||
* | (Zeus-specific) Don't GetServerVariable() for vars which Zeus doesn't use | Ben Mansell | 2000-09-19 | 1 | -20/+22 |
| | |||||
* | Fixed bug which could truncate PHP_SELF | Ben Mansell | 2000-09-19 | 1 | -0/+1 |
| | |||||
* | Restore the headers_only test to the centralized SAPI startup. If ↵ | Zeev Suraski | 2000-09-08 | 1 | -5/+0 |
| | | | | | | | necessary, it can be overriden in the activate() callback. | ||||
* | Fix ISAPI compilation | Zeev Suraski | 2000-09-04 | 1 | -3/+3 |
| | |||||
* | - Defining TSRM_WIN32 in each and every dsp sucked. Revert this change | Andi Gutmans | 2000-09-02 | 1 | -3/+3 |
| | |||||
* | - More Windows build fixes | Andi Gutmans | 2000-09-02 | 1 | -3/+3 |
| | |||||
* | - Change spaces to tab | Andi Gutmans | 2000-08-28 | 1 | -1/+1 |
| | |||||
* | changed the output directorys from the windowsbuilds | Daniel Beulshausen | 2000-08-23 | 1 | -3/+3 |
| | |||||
* | The status quo in PHP is that the current directory is initialized | Sascha Schumann | 2000-08-20 | 1 | -11/+0 |
| | | | | | | | | | to the directory where the executing script is located. Since this needs to be implemented for all SAPI modules anyway, this change moves the functionality to php_execute_script() and gets rid of the per-module code. | ||||
* | REQUEST_URI is a handy server variable, lets pass it onto ISAPI/PHP | Ben Mansell | 2000-08-18 | 1 | -0/+1 |
| | |||||
* | (send_headers) Removed code freeing http_status_line, this is performed | Ben Mansell | 2000-08-17 | 1 | -3/+0 |
| | | | | | | | | in sapi_send_headers() # Looks like a similar problem in sapi/pi3web/pi3web_sapi.c as well. # I can't test this though, so I'm being paranoid and not changing that code. # Could someone please check this? | ||||
* | Fix zend_fiel_handle handling. Should fix URL include | Stanislav Malyshev | 2000-08-13 | 1 | -0/+1 |
| | | | | | and various opened_path inconsistencies. | ||||
* | Fix a couple of bugs in the ISAPI module: | Zeev Suraski | 2000-08-09 | 1 | -9/+8 |
| | | | | | | - I think NTLM should work now - Fix the DOCUMENT_ROOT code | ||||
* | Add DOCUMENT_ROOT | Zeev Suraski | 2000-08-07 | 1 | -0/+16 |
| | |||||
* | Heads up! I have moved the headers_only and response_code checks out of | Rasmus Lerdorf | 2000-08-02 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | SAPI and down into the individual SAPI modules. I have made the appropriate changes in all the SAPI modules, but please verify these. The reason for this change is that Apache sometimes will feed PHP a request_method of GET but have r->header_only set to true. This happens in an ErrorDocument redirect. In this same scenario we want to preserve the status code as well instead of just overwriting it with a 200 and losing this information. For now the other sapi modules act exactly as before since they probably do not make this distinction, and they may not even have a valid response code this early in the request. @ Fix HEAD request bug on an Apache ErrorDocument redirect and preserve @ the status code across the redirect as well. (Rasmus) | ||||
* | Set version number on DLLs | Zeev Suraski | 2000-06-30 | 1 | -3/+3 |
| | |||||
* | Separate plain name returned by php_sapi_module() and pretty name | Andrei Zmievski | 2000-06-26 | 1 | -2/+3 |
| | | | | | used for output. | ||||
* | C++ // comments are evil ... | Hartmut Holzgraefe | 2000-06-16 | 1 | -2/+4 |
| |