summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added a test for bug #12776Moriyoshi Koizumi2002-12-041-0/+25
|
* Bug fix newsMoriyoshi Koizumi2002-12-041-0/+1
|
* Fixed segfaults of array_walk() when keys are passed to cb by reference.Moriyoshi Koizumi2002-12-041-7/+5
| | | | | Fixed bug #12776.
* WS fixes.Ilia Alshanetsky2002-12-041-6/+6
|
* Fix bugs #20270, #15702, #18600 (segfaults in ext/java). (Tony J. White)Sebastian Bergmann2002-12-041-0/+1
|
* Fix bugs #20270, #15702, #18600. Patch by Tony J. White <tjw@tjw.org>.Sebastian Bergmann2002-12-042-38/+14
|
* Fix imagegd stdoutputPierre Joye2002-12-041-1/+7
| | | | | Typo 256 colors
* Fix imagegd crashes when used with truecolor image (from jpeg,png, or ↵Pierre Joye2002-12-041-0/+6
| | | | | | | imagecreatetruecolor) may we add parameters to imagegd to let user specify the palette size and dither (set to 256 and true) ?
* silence some possible warningsChristian Dickmann2002-12-031-4/+4
|
* Changed php_error() to php_error_docref()Frank M. Kromann2002-12-031-39/+42
|
* Fixed a bug that caused a crash in pdf_open_memory_image(), when a truecolorIlia Alshanetsky2002-12-031-8/+21
| | | | | | | image was loaded, it now checks if the image is truecolor and performs the appropriate calculations (fixed bug #20785). Changed E_WARNING back to E_ERROR.
* Changed php_error() to php_error_docref()Frank M. Kromann2002-12-031-33/+33
|
* Bug #19370Frank M. Kromann2002-12-032-72/+74
| | | | | Allow stored procedures to return multiple results.
* Bug #17593Frank M. Kromann2002-12-031-0/+2
| | | | | Make sure any pending data is released from the server when freeing the result
* damn milter api:Harald Radi2002-12-031-0/+1
| | | | | | | | | | | "Furthermore, since there is not a one-to-one correspondence between threads and connections (N connections mapped onto M threads, M <= N), connection-specific data must be accessed through the handles provided by the Milter library." which in other words means php_request_startup() and the corresponding php_request_shutdown() will never be called for the same thread
* Fixed a crash that occurs during the last step of png/jpeg -> gd2 -> png/jpegIlia Alshanetsky2002-12-032-29/+9
| | | | | | | conversion. The same crash still occures with png/jpeg -> gd -> png/jpeg, because apparently gd format cannot handle truecolor images. Turned off debug messages inside gd_gd2.c.
* Fixed leaks in array_walk()Moriyoshi Koizumi2002-12-031-1/+1
|
* fix typos and make example more usefulHarald Radi2002-12-031-4/+30
|
* - Need these libraries for static buildfoobar2002-12-031-0/+3
|
* - Fixed the build with iPlanet LDAP SDK 5.xfoobar2002-12-031-1/+14
|
* Allocating enough memory to hold values.Frank M. Kromann2002-12-031-16/+17
| | | | | Fix crash when certan stored procedures was called. This caused the free_result function to free memory not yet allocated.
* Iconv extension is no longer experimentalMoriyoshi Koizumi2002-12-021-5/+0
|
* Reverted the changes because the problem was elsewhere.Moriyoshi Koizumi2002-12-026-21/+5
|
* Reverted wrong part of the commit made in 1.24Moriyoshi Koizumi2002-12-021-7/+7
|
* Fixing the Win32 compilation of mbstring with mbregex enabled.Frank M. Kromann2002-12-022-1/+2
|
* Fixing build on WIn32Frank M. Kromann2002-12-025-5/+20
| | | | | MBREGEX is disabled for now. 5 mbre_* functions are undefined on WIn32
* apparently this isn't finishedSterling Hughes2002-12-021-0/+2
|
* Fixed flex version check. Some lex scanners like Sun's SGU do not appearIlia Alshanetsky2002-12-021-1/+1
| | | | | | | to support -V flag, so by passing them data on stdin we prevent them from sitting idle waiting for stdin data. I've also added some common version retrieval flags, that may be supported by various lex scanners.
* Repositioned CoInitialize and CoUninitialize that apparetly makes it moreIlia Alshanetsky2002-12-021-7/+8
| | | | | | correct according to MS docs. Patch (+5) by Michael Sisolak <msisolak@yahoo.com>.
* Fixed a crash bug that can occur due to PDF_delete() being called more thenIlia Alshanetsky2002-12-021-2/+1
| | | | | once and E_ERROR occurring during the shutdown sequence.
* Revert patch that should have been reverted a long time ago.Jason Greene2002-12-021-2/+2
| | | | | | | There was a memory leak in the error handling system on win32, that this patch circumvented (by preventing the errors (EAGAIN mesages) from being generated). # I must have forgotten to remove this when I fixed the leak
* aparently did not add these on headShane Caraveo2002-12-022-0/+466
| | | | | removed ssize_t which was causing problems, and not in libfcgi anyway
* fix use of Alias under apache by defaulting script_name to redirect_urlShane Caraveo2002-12-021-2/+7
| | | | | dont lstat, stat.
* Correct the punctuation of these error messages.Jon Parise2002-12-021-3/+3
|
* TODO: Cleanup elements that have happened, or most likely won't happen. ThereSterling Hughes2002-12-012-18/+8
| | | | | | | | is probably more that should be gone, but its still a move in the right direction. Other stuff is ws/formatting changes
* build support for cgi fixes previously commitedShane Caraveo2002-12-011-0/+18
|
* Fix CGI to match cgi spec.Shane Caraveo2002-12-015-138/+349
| | | | | | | | | | | | This patch properly fixes support for CGI in PHP. For backwards compatible broken behaviour, cgi.fix_pathinfo can be set to zero in php.ini. CGI failed to work under apache at all, either using the cgi-script directive or as a ScriptAlias setup. Typicaly it would try to parse itself. This will still happen if you dissable fix_pathinfo, and set DISCARD_PATH. This also fixes PATH_INFO, and finally we can run pres2 under cgi or fastcgi. This patch has been tested under Apache 1.3, 2.0, IIS, as both cgi and fastcgi, on Windows and OSX. A followup patch with build stuff for linux will follow.
* php_error_docref aborts cgi. This broke using php as cgi underShane Caraveo2002-12-011-1/+1
| | | | | | apache/mod_cgi with the cgi-script directive and bang lines in php scripts. removing it allows this to work again.
* exampleHarald Radi2002-12-011-0/+106
|
* rename callbacks to fit the original nameHarald Radi2002-12-011-3/+3
|
* - Allow enabling of memory cache with zend_mmAndi Gutmans2002-12-011-1/+1
|
* initial checkinHarald Radi2002-12-011-0/+7
|
* if the api functions are called, check if they're valid in that contextHarald Radi2002-12-012-96/+315
| | | | | | | reopen file per request, so milter doesn't hang. PHPA or APC can be used to speed the milter up added a milter_init callback to init the milter before it is registered added protos to make sniper happy
* - MFZE1Andi Gutmans2002-12-013-0/+204
|
* - Revert as the patch doesn't compileAndi Gutmans2002-12-013-204/+0
|
* - MFZE1Andi Gutmans2002-12-013-0/+204
|
* Comment about maximal length now matches code.Stefan Roehrich2002-12-011-2/+2
|
* fix build..foobar2002-12-011-8/+8
|
* first working versionHarald Radi2002-12-011-107/+106
|
* check for libmilter pathHarald Radi2002-12-011-4/+6
|