summaryrefslogtreecommitdiff
path: root/sapi
Commit message (Collapse)AuthorAgeFilesLines
* I'm not sure whether this is necessary or not. Is it guarenteed that ↵Zeev Suraski2000-06-281-1/+3
| | | | | | | get_module_conf() will always return a value? Even if there were no relevant directives at all?
* defer loading of the native codeSam Ruby2000-06-271-2/+6
|
* Separate plain name returned by php_sapi_module() and pretty nameAndrei Zmievski2000-06-2610-7/+17
| | | | | used for output.
* - Pray this is an OK fix for the DISCARD_PATH junkAndi Gutmans2000-06-261-0/+4
|
* Right name for the function persist_allocStanislav Malyshev2000-06-261-1/+1
|
* - Try two in fixing the problem with memory leaks reporting path_translatedAndi Gutmans2000-06-261-4/+6
|
* - Fix problem with filename being freed before possible memory leaks areZeev Suraski2000-06-261-1/+7
| | | | | - reported by the memory manager
* If we freed it, we might not touch itStanislav Malyshev2000-06-261-1/+2
| | | | | | | # BTW, this is not a real fix - we still might use it # when reporting memory leaks, but at least we won't reference # unitialized memory
* Apply the NSAPI patchZeev Suraski2000-06-241-0/+16
|
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-1/+0
|
* alloc.h has been removed from the Apache 1.3 CVS treeSascha Schumann2000-06-241-1/+1
|
* Changed strtok_r to php_strtok_rHolger Zimmermann2000-06-181-2/+2
|
* Cosmetic cleanupsSascha Schumann2000-06-182-13/+9
|
* Readd pi3web_sapi.c and reset flags.Sascha Schumann2000-06-181-0/+461
|
* Added Pi3Web supportHolger Zimmermann2000-06-174-0/+83
|
* look for apxs in /usr/sbin (that's where SUSE puts it)Hartmut Holzgraefe2000-06-171-0/+7
| | | | | if no path is given and apxs is not found in $PATH
* C++ // comments are evil ...Hartmut Holzgraefe2000-06-161-2/+4
|
* More main workSascha Schumann2000-06-161-1/+1
|
* - More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversionsAndi Gutmans2000-06-151-1/+1
|
* - Beautify a bitAndi Gutmans2000-06-151-14/+5
|
* - Try and fix crash with CGI.Andi Gutmans2000-06-151-11/+16
| | | | | | | - Please check out the comment I wrote in init_request_info(). There was a - lot of code there which was running for no apparent reason. Should it be - removed or should it actually run?
* - Unncessary SLS_FETCH();Andi Gutmans2000-06-151-4/+0
|
* Find servlet includes in new "main" directory. Add (finally) java andSam Ruby2000-06-141-6/+6
| | | | | servlet to the list of projects
* Export the necessary functions to enable servlet support to be subclassedSam Ruby2000-06-141-8/+8
| | | | | This is in preparation for xml-cocoon support
* Due to creating the Makefiles later, generating libphp4.module failed,Sascha Schumann2000-06-131-0/+1
| | | | | | because sapi/apache had not been created. This applies to VPATH builds only.
* Proper castsSascha Schumann2000-06-131-1/+1
|
* Removed obsolete, commented lineDavid Hedbor2000-06-121-1/+0
|
* Fix Windows .dsp'sZeev Suraski2000-06-113-9/+9
|
* - This seems to be a bug. Anyone know who wrote this code? Should it stayAndi Gutmans2000-06-101-2/+2
| | | | | - in?
* The ! command is not portable.Sascha Schumann2000-06-091-1/+3
|
* Added more server variables to the HTTP_SERVER_VARS array, all theAnthony Whitehead2000-06-081-0/+21
| | | | | | variables listed in the structs in nsapi.c should work now. Untested on Windows platform.
* Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE.Sascha Schumann2000-06-083-46/+32
|
* Added another bug to be fixedDavid Hedbor2000-06-061-0/+19
|
* PRE_INCLUDES hack revertedDavid Hedbor2000-06-063-5/+3
|
* Move main.h to php_main.h.Sascha Schumann2000-06-059-9/+9
|
* Fix virtual() when used with output bufferingRasmus Lerdorf2000-06-051-0/+3
| | | | | @ Fix virtual() when used with output buffering (Marc Pohl)
* List with TODO itemsDavid Hedbor2000-06-051-0/+14
|
* Fixed include directory problems.David Hedbor2000-06-052-1/+5
|
* Changed include statement for main.h to avoid inclusion of Pike's main.h.David Hedbor2000-06-051-4/+4
|
* - Allow all functions that receive user-defined function callbacks to acceptZeev Suraski2000-06-033-9/+9
| | | | | | | | | 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)
* Added changes suggested by Stanislav Borutsky with respect to NSAPI_PUBLIC.Anthony Whitehead2000-05-311-10/+4
|
* The last line added '-I' to INCLUDES, causing all SAPI modules but NSAPISascha Schumann2000-05-311-2/+0
| | | | | failing to build.
* Altered NSAPI autoconf to check for location of include files automatically, ↵Anthony Whitehead2000-05-303-51/+82
| | | | | | | | | tested for Netscape 3.x and iPlanet 4.x. Added very basic variable support for usefull things such as PHP_SELF. I'll extend this to supply this rest of the variables soon. Commited a patch to activate ZTS in the NSAPI module, this patch comes from Jayakumar Muthukumarasamy.
* - Fix problem in sessions module under Win32. Need to use ; as an optionsAndi Gutmans2000-05-271-1/+1
| | | | | - delimiter in save_path instead of :.
* @ Changed the Apache handler's return status to 'Declined' when a requestedRasmus Lerdorf2000-05-261-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.
* Only fetch globals if it's necessary (which it usually won't be)Zeev Suraski2000-05-251-3/+4
|
* @- ignore_user_abort() & friends should now work in CGI mode as well.Thies C. Arntzen2000-05-251-2/+20
| | | | | @ (Patch by daniel.braun@ercom.fr)
* -i, -v, -h and -? execution pathes didn't flush the output bufferHartmut Holzgraefe2000-05-221-1/+7
| | | | | | on exit, resultiong in no output at all when "output-buffering=On" ( BUG id#3420 )
* Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!')Ben Mansell2000-05-221-3/+1
|
* use simpler foreach instead of whileSam Ruby2000-05-211-1/+1
|