zeev Wed Mar 7 02:08:19 2001 EDT
Modified files:
/php4 NEWS php.ini-dist php.ini-optimized
Log:
Update .ini's and NEWS
Index: php4/NEWS
diff -u php4/NEWS:1.605 php4/NEWS:1.606
--- php4/NEWS:1.605 Tue Mar 6 18:09:17 2001
+++ php4/NEWS Wed Mar 7 02:08:18 2001
@@ -2,6 +2,9 @@
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 200?, Version 4.0.5
+- Fixed parent::method() to also work with runtime bindings (Zeev, Zend Engine)
+- Implemented high-performance zlib-based output compression - see
+ zlib.output_compression INI directive (Zeev)
- Ported Documentation structure from phpdoc (jmoore)
- Improved ob_gzhandler() to support chunked output buffering - it's recommended
to use it with 4KB chunks (Zeev)
Index: php4/php.ini-dist
diff -u php4/php.ini-dist:1.72 php4/php.ini-dist:1.73
--- php4/php.ini-dist:1.72 Sat Mar 3 05:10:13 2001
+++ php4/php.ini-dist Wed Mar 7 02:08:19 2001
@@ -1,5 +1,5 @@
[PHP]
-; $Id: php.ini-dist,v 1.72 2001/03/03 13:10:13 sbergmann Exp $
+; $Id: php.ini-dist,v 1.73 2001/03/07 10:08:19 zeev Exp $
;;;;;;;;;;;;;;;;;;;
; About this file ;
@@ -81,6 +81,11 @@
; transparently compressed for browsers that support gzip or deflate encoding.
; Setting an output handler automatically turns on output buffering.
output_handler =
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+zlib.output_compression = Off
; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block. This is equivalent to calling the
Index: php4/php.ini-optimized
diff -u php4/php.ini-optimized:1.32 php4/php.ini-optimized:1.33
--- php4/php.ini-optimized:1.32 Mon Jan 22 11:15:31 2001
+++ php4/php.ini-optimized Wed Mar 7 02:08:19 2001
@@ -57,6 +57,10 @@
; will be transparently
compressed for browsers that support gzip or
; deflate encoding. Setting
an output handler automatically turns on
; output buffering.
+zlib.output_compression = Off ; Transparent output compression using the zlib library
+ ; Valid values for
+this option are 'off', 'on', or a specific buffer size
+ ; to be used for
+compression (default is 4KB)
+
implicit_flush = Off ; Implicit flush tells PHP to tell the output layer to
flush itself
; automatically after every
output block. This is equivalent to
; calling the PHP function
flush() after each and every call to print()
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]