Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | I'm not sure whether this is necessary or not. Is it guarenteed that ↵ | Zeev Suraski | 2000-06-28 | 1 | -1/+3 |
| | | | | | | | get_module_conf() will always return a value? Even if there were no relevant directives at all? | ||||
* | Separate plain name returned by php_sapi_module() and pretty name | Andrei Zmievski | 2000-06-26 | 1 | -1/+2 |
| | | | | | used for output. | ||||
* | alloc.h has been removed from the Apache 1.3 CVS tree | Sascha Schumann | 2000-06-24 | 1 | -1/+1 |
| | |||||
* | look for apxs in /usr/sbin (that's where SUSE puts it) | Hartmut Holzgraefe | 2000-06-17 | 1 | -0/+7 |
| | | | | | if no path is given and apxs is not found in $PATH | ||||
* | More main work | Sascha Schumann | 2000-06-16 | 1 | -1/+1 |
| | |||||
* | - More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversions | Andi Gutmans | 2000-06-15 | 1 | -1/+1 |
| | |||||
* | Due to creating the Makefiles later, generating libphp4.module failed, | Sascha Schumann | 2000-06-13 | 1 | -0/+1 |
| | | | | | | because sapi/apache had not been created. This applies to VPATH builds only. | ||||
* | Fix Windows .dsp's | Zeev Suraski | 2000-06-11 | 1 | -3/+3 |
| | |||||
* | The ! command is not portable. | Sascha Schumann | 2000-06-09 | 1 | -1/+3 |
| | |||||
* | Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE. | Sascha Schumann | 2000-06-08 | 1 | -16/+16 |
| | |||||
* | Move main.h to php_main.h. | Sascha Schumann | 2000-06-05 | 2 | -2/+2 |
| | |||||
* | Fix virtual() when used with output buffering | Rasmus Lerdorf | 2000-06-05 | 1 | -0/+3 |
| | | | | | @ Fix virtual() when used with output buffering (Marc Pohl) | ||||
* | - Allow all functions that receive user-defined function callbacks to accept | Zeev Suraski | 2000-06-03 | 1 | -3/+3 |
| | | | | | | | | | an array that contains an object and a method name, in place of a function name, e.g. usort($array, array($obj, "ObjSort")) (I checked the code in array.c and basic_functions.c, other code which uses call_user_function() may still force the function_name argument to be of type IS_STRING, which prevents this feature from working - and is no longer necessary) | ||||
* | @ Changed the Apache handler's return status to 'Declined' when a requested | Rasmus Lerdorf | 2000-05-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | @ PHP file could not be found. Returning 'Not Found' caused problems @ in the ErrorDocument handler stage in that $REDIRECT_REDIRECT_ERROR_NOTES @ was not getting set at all. Moving to 'Declined' shoudl fix this and I @ can't see any other side effects. (Rasmus) Changed the Apache handler's return status to 'Declined' when a requested PHP file could not be found. Returning 'Not Found' caused problems in the ErrorDocument handler stage in that $REDIRECT_REDIRECT_ERROR_NOTES was not getting set at all. Moving to 'Declined' shoudl fix this and I can't see any other side effects. | ||||
* | Update the license with the new clause 6 | Zeev Suraski | 2000-05-18 | 4 | -8/+8 |
| | |||||
* | Fix crash when server_context is not longer valid (e.g., when | Zeev Suraski | 2000-05-17 | 1 | -0/+4 |
| | | | | | coming from php_apache_request_shutdown) | ||||
* | Fix wording (not "to apxs", but "of apxs"). | Sascha Schumann | 2000-05-15 | 1 | -1/+1 |
| | |||||
* | Complain loudly and stop configuration, if we cannot run apxs. | Sascha Schumann | 2000-05-15 | 1 | -0/+7 |
| | |||||
* | Please maintain consistency in these names... :) | Zeev Suraski | 2000-05-14 | 1 | -13/+13 |
| | |||||
* | - Fix a crash bug in case output is generated in the Apache module while | Zeev Suraski | 2000-05-14 | 1 | -2/+11 |
| | | | | | in request_shutdown | ||||
* | oh boy! apache-win32 works! | Shane Caraveo | 2000-05-06 | 1 | -3/+3 |
| | |||||
* | more apachewin32 work. much better now, but still crashing in zend_execute. ↵ | Shane Caraveo | 2000-05-04 | 3 | -73/+32 |
| | | | | At least it's getting the file open now though. | ||||
* | Remove trailing empty lines | Sascha Schumann | 2000-05-01 | 1 | -4/+0 |
| | |||||
* | Large test commit IV | Sascha Schumann | 2000-05-01 | 1 | -0/+1 |
| | |||||
* | Large commit test III | Sascha Schumann | 2000-05-01 | 1 | -0/+3 |
| | |||||
* | zeroing the variables fixes one crash...now crashes on memory allocation ↵ | Shane Caraveo | 2000-04-30 | 1 | -0/+4 |
| | | | | during zend_compile_files | ||||
* | sorry, do comments right | Shane Caraveo | 2000-04-30 | 1 | -6/+6 |
| | |||||
* | apache module now compiles under win32, apache loads, but crashes on line ↵ | Shane Caraveo | 2000-04-30 | 5 | -5/+226 |
| | | | | 1167 main.c on page request | ||||
* | Overall UNIX build system improvements: | Sascha Schumann | 2000-04-30 | 1 | -6/+1 |
| | | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support) | ||||
* | - Change PHP_ to V_ (directory & file functions) | Andi Gutmans | 2000-04-15 | 1 | -1/+1 |
| | |||||
* | Fix for bug #4125 | Rasmus Lerdorf | 2000-04-13 | 1 | -1/+1 |
| | |||||
* | @- Fixed several problems with the PATH_TRANSLATED and PHP_SELF under Apache | Zeev Suraski | 2000-04-08 | 1 | -3/+3 |
| | | | | | @ (Paul Gregg & Zeev) | ||||
* | last one ... promise | Colin Viebrock | 2000-04-07 | 1 | -0/+1 |
| | |||||
* | typo | Colin Viebrock | 2000-04-07 | 1 | -2/+2 |
| | |||||
* | typo | Colin Viebrock | 2000-04-07 | 1 | -2/+1 |
| | |||||
* | *** empty log message *** | Colin Viebrock | 2000-04-07 | 1 | -3/+3 |
| | |||||
* | more prettiness | Colin Viebrock | 2000-04-07 | 1 | -17/+20 |
| | |||||
* | - This version of chdir_file should be compatible with the Apache one. | Andi Gutmans | 2000-04-02 | 1 | -1/+1 |
| | |||||
* | Some white-space changes | Sascha Schumann | 2000-03-26 | 1 | -6/+4 |
| | |||||
* | Change extension names in all extensions' zend_module_entry to their | Stig Bakken | 2000-03-06 | 1 | -1/+1 |
| | | | | | directory name. | ||||
* | @"none" is now equivalent with "" in Apache config directives (Stig) | Stig Bakken | 2000-03-02 | 1 | -0/+4 |
| | | | | | "none" is now equivalent with "" in Apache config directives. | ||||
* | Compile fix | Zeev Suraski | 2000-02-26 | 1 | -2/+1 |
| | |||||
* | - From CODING_STANDARDS: | Zeev Suraski | 2000-02-26 | 1 | -1/+1 |
| | | | | | | | | | | | [6] NEVER USE strncat(). If you're absolutely sure you know what you're doing, check its man page again, and only then, consider using it, and even then, try avoiding it. strncat() is your enemy! - Fix several SAPI services, get rid of the default_content_type (it's always composed of the mime type and charset now). - Win32 works again | ||||
* | @- Implemented default_charset and default_mimetype config directives (Stig) | Stig Bakken | 2000-02-25 | 1 | -4/+20 |
| | | | | | | Implemented default_charset and default_mimetype configuration directives. Started implementing ticks in PHP. | ||||
* | started implementing directives for default mimetype/charset | Stig Bakken | 2000-02-24 | 1 | -2/+2 |
| | |||||
* | @- Fixed -DEAPI inheritance from APXS. (Sascha) | Sascha Schumann | 2000-02-24 | 1 | -1/+1 |
| | |||||
* | Improve APXS_CFLAGS checks | Sascha Schumann | 2000-02-24 | 1 | -2/+2 |
| | |||||
* | Define EAPI, if Apache uses EAPI | Sascha Schumann | 2000-02-24 | 1 | -1/+5 |
| | |||||
* | Remove XML_INCLUDE, we use the embedded expat always | Sascha Schumann | 2000-02-24 | 1 | -6/+0 |
| | |||||
* | the pipe is breaking all the time | Zeev Suraski | 2000-02-19 | 4 | -8/+8 |
| |