Re: note: [PHP] ob_get_length() returns uncompressed buffer length (after ob_start('ob_gzhandler'))

2003-10-23 Thread Marek Kilimajer
One option I can think of would be to handle the compression in your code: ?php ob_start(); print aa; // 30 a's print bb; // 30 b's print aa; // 30 a's $output=gzcompress(ob_get_contents());

Re: note: [PHP] ob_get_length() returns uncompressed buffer length (after ob_start('ob_gzhandler'))

2003-10-23 Thread Marek Kilimajer
I forgot the obvious: echo $output; after header(...) Marek Kilimajer wrote: One option I can think of would be to handle the compression in your code: ?php ob_start(); print aa; // 30 a's print bb; // 30 b's print

note: [PHP] ob_get_length() returns uncompressed buffer length (after ob_start('ob_gzhandler'))

2003-10-22 Thread daniel hahler
Hallo daniel, am Mon, 20 Oct 2003 13:45:18 +0200 schrieb ich bereits: dh But I did not find an answer, how to correct this.. - using dh ob_implicit_flush(); did also not help. is there no way to put header('Content-Length: '.$sth) in when you use ob_gzhandler in output buffering? that would be

Re: note: [PHP] ob_get_length() returns uncompressed buffer length (after ob_start('ob_gzhandler'))

2003-10-22 Thread daniel hahler
Hallo PHP-general list, on Wed, 22 Oct 2003 23:07:06 +0200 I already wrote: dh Hallo daniel, don't want to talk only to myself.. this is for everyone.. :) -- shinE! http://www.thequod.de ICQ#152282665 PGP 8.0 key: http://thequod.de/danielhahler.asc -- PHP General Mailing List