Jump to content

Implimenting gzip compression in a webpage


jordanwb

Recommended Posts

So I'd put this before any output:

 

ob_start("ob_gzhandler");

 

What about after I ouput stuff? Do I call

 

ob_end_flush();

 

I remember from MyBB that there was an option to control how hard the compressor should try. Also what about cookies?

Cookies will be in the header, so output compression shouldn't affect them.

 

Why not have compression done automatically if you're building your own version of PHP

 

http://php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression

The thing is I don't want to be always compressed. I'm designing my Site Content Manager to support Plugins. There will be a compression plugin featuring a compression algorithm. Also the compression amount will be on a per user basis. If one wants high compression, then higher compression will be attempted.

 

I checked make.conf and PHP was compiled with zlip support.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.