Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC4'.php-4.2.0RC4 | SVN Migration | 2002-04-14 | 2 | -54/+3 |
| | |||||
* | - Go with RC4 | Derick Rethans | 2002-04-14 | 2 | -2/+2 |
| | |||||
* | Make the configure fail if someone tries to use --with-apache with Apache2 | foobar | 2002-04-14 | 1 | -26/+3 |
| | |||||
* | - MFH: Fix NULL-termination issue | Derick Rethans | 2002-04-14 | 1 | -0/+1 |
| | |||||
* | fixed error output handler when 'pass' is choosed as output encoding. | Rui Hirokawa | 2002-04-14 | 1 | -0/+4 |
| | |||||
* | This is experimental still | foobar | 2002-04-14 | 1 | -1/+1 |
| | |||||
* | Make this work as it was supposed to work. | foobar | 2002-04-14 | 1 | -10/+6 |
| | |||||
* | MFH (use of correct javac/jar binaries) | foobar | 2002-04-14 | 5 | -13/+39 |
| | |||||
* | MFH: ocibind: avoid warning in debug mode | Thies C. Arntzen | 2002-04-13 | 1 | -0/+1 |
| | |||||
* | MFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies) | Thies C. Arntzen | 2002-04-13 | 1 | -1/+7 |
| | | | | | to RM: this is a real fix that _should_ be in 4.2! | ||||
* | - Makefile.frag is not supposed to be here.. | foobar | 2002-04-13 | 2 | -181/+0 |
| | | | | | - Net/Socket.php doesn't exist anymore | ||||
* | MFH: For example the compile in AIX does not like these at all.. | foobar | 2002-04-13 | 1 | -12/+18 |
| | |||||
* | MFH. | foobar | 2002-04-13 | 2 | -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..) | foobar | 2002-04-13 | 1 | -1/+5 |
| | |||||
* | Fix a typo and a build error detected by the lovely HPUX11 ANSI C compiler. | Aaron Bannert | 2002-04-12 | 1 | -5/+7 |
| | |||||
* | - Swap back development version numbers | Derick Rethans | 2002-04-12 | 2 | -2/+2 |
| | |||||
* | - Go with RC3 | Derick Rethans | 2002-04-12 | 2 | -2/+2 |
| | |||||
* | - fix testcase | Jan Lehnardt | 2002-04-12 | 1 | -1/+1 |
| | | | | | - patch by: Roman Neuhauser <neuhauser@mail.cz> | ||||
* | MFH | Sander Roobol | 2002-04-12 | 1 | -1/+6 |
| | |||||
* | fixed a bug which causes crash when charset is not set. | Rui Hirokawa | 2002-04-12 | 1 | -8/+10 |
| | |||||
* | MFH (Reduce warning level for re2c generated files. | Sebastian Bergmann | 2002-04-12 | 2 | -0/+4 |
| | |||||
* | fixed type | Harald Radi | 2002-04-11 | 1 | -1/+1 |
| | |||||
* | Fix a problem where php-generated data was pushed down the entire output | Aaron Bannert | 2002-04-11 | 2 | -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 have | Aaron Bannert | 2002-04-11 | 2 | -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 Bergmann | 2002-04-11 | 3 | -9/+1 |
| | |||||
* | Don't depend on the context provided by the filter (f->ctx) anymore. In | Aaron Bannert | 2002-04-11 | 1 | -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 Bannert | 2002-04-11 | 1 | -1/+1 |
| | | | | | Suggested by: Brian Havard <brianh@kheldar.apana.org.au> | ||||
* | MFH (Update README). | Sebastian Bergmann | 2002-04-11 | 1 | -5/+2 |
| | |||||
* | - Mark Apache2, overload and aggregation as experimental | Derick Rethans | 2002-04-11 | 7 | -1/+62 |
| | |||||
* | * no more pear/scripts/pear-get | Stig Bakken | 2002-04-11 | 1 | -1/+1 |
| | |||||
* | MFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley ↵ | Sebastian Bergmann | 2002-04-11 | 2 | -83/+73 |
| | | | | <jwoolley@virginia.edu>). | ||||
* | Note about Apache2 support being experimental. | foobar | 2002-04-10 | 1 | -0/+1 |
| | |||||
* | MFH | foobar | 2002-04-10 | 1 | -1/+1 |
| | |||||
* | * add missing continuation | Stig Bakken | 2002-04-10 | 1 | -1/+1 |
| | |||||
* | * tabify instead of untabify :-P | Stig Bakken | 2002-04-10 | 1 | -39/+39 |
| | |||||
* | * remove pear-get if installed | Stig Bakken | 2002-04-10 | 1 | -0/+1 |
| | |||||
* | * keep installing the bundled files in 4.2 too | Stig Bakken | 2002-04-10 | 1 | -55/+51 |
| | |||||
* | - Reverse patch | Derick Rethans | 2002-04-10 | 1 | -22/+11 |
| | |||||
* | MFH | Derick Rethans | 2002-04-10 | 1 | -2/+2 |
| | |||||
* | MFH | jim winstead | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | * MFH Makefile | Stig Bakken | 2002-04-09 | 1 | -52/+56 |
| | |||||
* | * PEAR MFH | Stig Bakken | 2002-04-09 | 23 | -529/+1014 |
| | | | | | # using rsync this time, does it work? | ||||
* | This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'. | SVN Migration | 2002-04-09 | 1 | -0/+82 |
| | |||||
* | * partial PEAR MFH | Stig Bakken | 2002-04-09 | 35 | -1164/+1320 |
| | |||||
* | This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'. | SVN Migration | 2002-04-09 | 3 | -0/+732 |
| | |||||
* | * MFH: install the right expat header files | Stig Bakken | 2002-04-09 | 1 | -2/+1 |
| | |||||
* | fix compile warnings | Sterling Hughes | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | MFH | foobar | 2002-04-08 | 1 | -1/+1 |
| | |||||
* | MFH (MS VS.Net Fix). | Sebastian Bergmann | 2002-04-08 | 3 | -3/+3 |
| | |||||
* | remove streams option from branch | Wez Furlong | 2002-04-08 | 1 | -9/+0 |
| |