Re: [PHP] gzip to max 9

2003-08-11 Thread Evan Nemerson
try setting zlib.output_compression_level in your php.ini On Saturday 09 August 2003 09:42 am, Decapode Azur wrote: > Dear All, > > > function wrl2wrz($buffer) { return gzencode ($buffer, 9); } > ob_start("wrl2wrz"); > > /* here the file */ > > ob_end_flush(); # end of the output buffering > ?>

Re: [PHP] gzip to max 9

2003-08-10 Thread Decapode Azur
> try setting zlib.output_compression_level in your php.ini won't it turn 'zlib.output_compression' to On ? (because I prefere to keep it Off) -- > > > function wrl2wrz($buffer) { return gzencode ($buffer, 9); } > > ob_start("wrl2wrz"); > > /* here the file */ > > ob_end_flush(); # end of t