summaryrefslogtreecommitdiff
path: root/sapi
Commit message (Collapse)AuthorAgeFilesLines
...
* Made constants persistent and fixed a memory leak.Edin Kadribasic2002-05-261-3/+7
|
* Register STDIN, STDOUT, and STDERR "constants" in cli in cases whereEdin Kadribasic2002-05-241-0/+50
| | | | | | | script itself is not being loaded from STDIN. This enables constructs like fwrite(STDERR, "Error 42");
* Add README and CREDITS...Wez Furlong2002-05-222-0/+58
|
* Fix bug when length was queried before the string was converted.Wez Furlong2002-05-221-1/+6
|
* Use the GIT for inter-thread marshalling.Wez Furlong2002-05-203-133/+187
|
* this way it even compilesHarald Radi2002-05-202-15/+15
| | | | | #blame me if i did something wrong, i didn't test it ;)
* Implement ActiveScript interfaces.Wez Furlong2002-05-208-0/+2832
| | | | | | | | | | This allows use of PHP in: Client-side script in Internet Explorer Windows Scripting Host ASP and ASP.NET pages It's mostly working... give it a go. You will need to regsvr32 the php4activescript.dll manually.
* Improve readability of the header send functionSascha Schumann2002-05-171-34/+33
|
* Allow the version checks for --with-apxs= and --with-apxs2= to workCliff Woolley2002-05-172-2/+2
| | | | | | | | | with development version of Apache, whose version strings end in "-dev", eg "Apache/2.0.37-dev". PR: 17233 Submitted by: Dale Ghent <daleg@elemental.org>
* apache 2.0's apache_lookup_uri() was returning an array rather than anCliff Woolley2002-05-171-4/+13
| | | | | | | | object, which contradicted both the documentation and the behavior of the same function under apache 1.3. PR: 14999
* * restore the php_flag and php_admin_flag Apache directives which forCliff Woolley2002-05-171-2/+30
| | | | | | | | | some mysterious reason never made their way from sapi/apache to sapi/apache2filter when it was first written PR: 16629 * change the allowed locations of php_admin_value (and php_admin_flag to match) to ACCESS_CONF instead of OR_NONE to match sapi/apache. No idea why it was ever OR_NONE. PR: 16489
* Fix fastcgi build, may need more workJason Greene2002-05-141-2/+4
| | | | | # Sascha, would you mind looking this over?
* Patch by Justin Erenkrantz <jerenkrantz@apache.org> for enablingMarko Karppinen2002-05-131-1/+12
| | | | | | --with-apxs2 build on Darwin. Omitting the change to start linking with libtool for now, though.
* More verbose but more generic error message when we spot multipleJim Jagielski2002-05-131-1/+1
| | | | | PHPINIDir directives
* - Update about CLI default settings and it's weirdness.Markus Fischer2002-05-111-2/+3
|
* Added copyright notice to php -v output.Edin Kadribasic2002-05-112-2/+2
|
* Patch by Justin Erenkrantz <jerenkrantz@apache.org>. This should be MFHed.Sebastian Bergmann2002-05-111-0/+2
|
* Revert to the old php_ini.c, and reimplement the binary-path searching.Zeev Suraski2002-05-112-0/+4
| | | | | Should now also work under UNIX (CLI/CGI)
* whitespaceZeev Suraski2002-05-111-1/+1
|
* Add missing elementZeev Suraski2002-05-111-0/+2
|
* - Prefix the first version line with 'PHP' so it's easier to use shell tools toMarkus Fischer2002-05-102-2/+2
| | | | | parse the version number (both CLI and CGI).
* - This affects both CGI and CLI sapi:Markus Fischer2002-05-102-4/+2
| | | | | | Remove Zend version output from -m switch and move it over to the output of the -v switch (-v is supposed to list version numbers, not -m).
* Backed out preceding change.Preston L. Bannister2002-05-091-8/+0
|
* Detect when running under IIS and default force_redirect to zero. This This ↵Preston L. Bannister2002-05-091-0/+8
| | | | | | | means an explicit php.ini setting is no longer required. (No extraneous whitespace changes this time :).
* Revert the last patches.foobar2002-05-091-739/+731
|
* Detect when running under IIS and not require explicit setting of ↵Preston L. Bannister2002-05-091-731/+739
| | | | | | | force_redirect. This means an explicit php.ini setting is no longer required.
* Added the current SAPI to the output of php -vSander Roobol2002-05-092-2/+2
|
* Added conversion support from script character encoding to internal ↵Rui Hirokawa2002-05-081-0/+9
| | | | character encoding. This feature is very useful for japanese who uses Shift_JIS encoding because some of characters in Shift_JIS are including '0x5c' and it causes some troubles on Zend parser. This patch is made by Masaki Fujimoto.
* - Added Aaron Bannert as maintainerDerick Rethans2002-05-081-1/+1
|
* Update README with register_argc_argv settings override.Edin Kadribasic2002-05-061-0/+1
|
* Fix a graceful restart SEGV. We no longer only perform initializationAaron Bannert2002-05-051-5/+0
| | | | | | | on the second pass through the post_config. Now we only avoid the initialization only on the first DSO load, and on all subsequent loads we rerun the init code.
* Fix an elusive and intermittent startup SEGV. The problem wasAaron Bannert2002-05-051-3/+8
| | | | | | | | | | the static string we were using to set an initialization flag would get remapped to a different location when Apache reloaded the DSO, causing us to not run our initialization routines. Submitted by: Justin Erenkrantz <jerenkrantz@apache.org> Reviewed by: Aaron Bannert (I added the big comment too)
* Force register_argc_argv=On for CLIfoobar2002-05-051-0/+1
|
* Well that didn't last long! (Reverting previous.)Marko Karppinen2002-05-051-1/+1
|
* Prelim. patch to enable apache2filter to link on Darwin.Marko Karppinen2002-05-051-1/+1
| | | | | | | | Submitted by: Justin Erenkrantz <jerenkrantz@apache.org> Reviewed by: markonen # A stopgap measure while we try to find a "real" # solution, if one exists.
* ap_php_optopt is set but never usedSascha Schumann2002-05-041-2/+0
|
* Fixed some minor typosSander Roobol2002-05-021-3/+3
|
* Fix build.Sebastian Bergmann2002-05-021-2/+2
|
* updated cgi warning notice.James Cox2002-05-021-0/+2
|
* Fix build when openssl is enabled.foobar2002-04-281-1/+1
|
* be a bit more verbose about what is wrongSascha Schumann2002-04-262-3/+3
|
* Fix external buildsSascha Schumann2002-04-261-1/+1
|
* - Fix for bug: #16791. (more reliable test)foobar2002-04-262-12/+18
|
* Apache does a full load, unload, load cycle for each DSO module.Aaron Bannert2002-04-241-0/+17
| | | | | | | | | | | | This patch makes sure that any startup actions that are performed for PHP don't happen until the second load (the second call to the post_config hook), and it also prevents subsequent calls to the initialization routines. Suggested By: Cliff Woolley PR: 16475, 16754
* apache_child_terminate() returns status as boolHartmut Holzgraefe2002-04-231-4/+7
| | | | | proto fixes
* This was not supposed to be uncommented..yet.foobar2002-04-231-1/+1
|
* Part 4 of apache sapi build fixes:foobar2002-04-234-128/+40
| | | | | | - Fixed many conflicts caused by bogus includes, e.g the infamous XtOffset redefinition warning is gone now.
* Part 3 of static apache build fixes:foobar2002-04-233-16/+17
| | | | | | | - Use the PHP_CFLAGS when compiling the php4 module in apache tree. - Use the apache include dir only when compiling sapi/apache o Fixes the fnmatch.h issue Wez complained about :)
* Typo in error stringJim Jagielski2002-04-221-1/+1
|
* Refine the OS X support a bitMarko Karppinen2002-04-221-3/+6
|