summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_4_2_0'.php-4.2.0SVN Migration2002-04-224-56/+3
|
* The PECL version probably will not compile with PHP 4.2 unless theyWez Furlong2002-04-201-0/+2
| | | | | | check it out on the branch. I have a tarball ready-to-go from my site, so add a not about it.
* - Fix mailparse dir for releaseDerick Rethans2002-04-203-0/+15
|
* - Update version numbersDerick Rethans2002-04-202-2/+2
|
* Go with 4.2.0Derick Rethans2002-04-202-2/+2
|
* MFH: Missing .cvsignore fileDerick Rethans2002-04-200-0/+0
|
* fix warningAdam Dickmeiss2002-04-191-1/+2
|
* - MFH for bug in Sambar 5.2Derick Rethans2002-04-181-1/+1
|
* Fix an intermittent SEGV when an error bubbled up from PHP before ourAaron Bannert2002-04-181-1/+8
| | | | | | | | server context was set. Now if that happens we simply don't log against any particular server config (vhost). Obtained from bug report by: Balazs Nagy <js@iksz.hu>
* It makes more sense to do the null-pointer check *before* trying to use it.Aaron Bannert2002-04-181-1/+1
| | | | | | | (Also fix a typo that Cliff pointed out: "safe" --> "save".) Obtained from: Ryan Morgan <rmorgan@covalent.net>
* * another file that should not have been MFH'edStig Bakken2002-04-181-39/+10
|
* - Make DBA compile as a shared moduleDerick Rethans2002-04-187-1/+24
|
* MFH fix for #16473Hartmut Holzgraefe2002-04-182-14/+18
|
* MFHHarald Radi2002-04-184-26/+44
|
* * revert buildv5 changesStig Bakken2002-04-171-2/+4
|
* MFH (#16628)Sander Roobol2002-04-161-1/+2
|
* - Remove version number hereDerick Rethans2002-04-161-1/+1
|
* this news entry reports a new mailparse additionSterling Hughes2002-04-141-2/+0
| | | | | | a later news entry reports that mailparse has been moved to pecl 1+1 = 2
* fix crash bug introduced by last commit (damncvs diff!)Thies C. Arntzen2002-04-141-1/+3
|
* - Swap back version numbers after taggingDerick Rethans2002-04-142-2/+2
|
* - Go with RC4Derick Rethans2002-04-142-2/+2
|
* Make the configure fail if someone tries to use --with-apache with Apache2foobar2002-04-141-26/+3
|
* - MFH: Fix NULL-termination issueDerick Rethans2002-04-141-0/+1
|
* fixed error output handler when 'pass' is choosed as output encoding.Rui Hirokawa2002-04-141-0/+4
|
* This is experimental stillfoobar2002-04-141-1/+1
|
* Make this work as it was supposed to work.foobar2002-04-141-10/+6
|
* MFH (use of correct javac/jar binaries)foobar2002-04-145-13/+39
|
* MFH: ocibind: avoid warning in debug modeThies C. Arntzen2002-04-131-0/+1
|
* MFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies)Thies C. Arntzen2002-04-131-1/+7
| | | | | to RM: this is a real fix that _should_ be in 4.2!
* - Makefile.frag is not supposed to be here..foobar2002-04-132-181/+0
| | | | | - Net/Socket.php doesn't exist anymore
* MFH: For example the compile in AIX does not like these at all..foobar2002-04-131-12/+18
|
* MFH.foobar2002-04-132-0/+12
| | | | | | (Prevent users from trying to build Apache 1.x module with Apache 2.x and vice-versa)
* MFH (forgot to commit this..sorry Derick..)foobar2002-04-131-1/+5
|
* Fix a typo and a build error detected by the lovely HPUX11 ANSI C compiler.Aaron Bannert2002-04-121-5/+7
|
* - Swap back development version numbersDerick Rethans2002-04-122-2/+2
|
* - Go with RC3Derick Rethans2002-04-122-2/+2
|
* - fix testcaseJan Lehnardt2002-04-121-1/+1
| | | | | - patch by: Roman Neuhauser <neuhauser@mail.cz>
* MFHSander Roobol2002-04-121-1/+6
|
* fixed a bug which causes crash when charset is not set.Rui Hirokawa2002-04-121-8/+10
|
* MFH (Reduce warning level for re2c generated files.Sebastian Bergmann2002-04-122-0/+4
|
* fixed typeHarald Radi2002-04-111-1/+1
|
* Fix a problem where php-generated data was pushed down the entire outputAaron Bannert2002-04-112-3/+5
| | | | | | | | filter chain instead of just down the rest of the chain. This fix will speed up some unnecessary overhead introduced in the last patch. Suggested by: Cliff Woolley <jwoolley@apache.org>
* PHP filters and Apache 2 aren't quite a perfect match yet, so we haveAaron Bannert2002-04-112-24/+70
| | | | | | | | | | | | | | | | | | | | | | | to do some trickery with the server_context to make sure it is always valid within the current thread. This patch makes sure the server_context is created in apache's post_read_request hook phase, and then registeres a cleanup that will NULL out the server context when the request goes out of scope. Then, inside the output filters, if the server_context is null we throw an error. Finally, instead of saving the output filter in the server_context, now we store the entire request_rec pointer in there. POST bodies appear to be working now, although they are very inefficient. The input filter is still just realloc()ing for whatever data comes down the input pipe, and then sending this to PHP. This means that we are doing some really nasty memory management on big POST bodies. For now this it allows for unlimited input bodies, which means that a big POST could potentially DoS a box by making it run out of memory. We might want to put a limit on here just in case, at least until we figure out how to consume input data more efficiently into php.
* Disable ext/overload.Sebastian Bergmann2002-04-113-9/+1
|
* Don't depend on the context provided by the filter (f->ctx) anymore. InAaron Bannert2002-04-111-6/+3
| | | | | | | | Apache 2 the input and output filter contexts are kept unique. We now only depend on SG(server_context) for each request, and assume that the same thread will process the entire request. At some point it would be wise to separate the input and output contexts.
* Return the number of bytes consumed, not the number of bytes left.Aaron Bannert2002-04-111-1/+1
| | | | | Suggested by: Brian Havard <brianh@kheldar.apana.org.au>
* MFH (Update README).Sebastian Bergmann2002-04-111-5/+2
|
* - Mark Apache2, overload and aggregation as experimentalDerick Rethans2002-04-117-1/+62
|
* * no more pear/scripts/pear-getStig Bakken2002-04-111-1/+1
|
* MFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley ↵Sebastian Bergmann2002-04-112-83/+73
| | | | <jwoolley@virginia.edu>).