Enabling Gzip

Comparing #2 with #3

Revision #3 was created by pestaa pestaa on Jul 10, 2009, 10:43:44 PM.

corrections

Content

Adding httpHTTP compression to your application could never have been easier! Just addinsert the following two lines to your configuration array, and the PHP will do the rest.


```php
'onBeginRequest'=>create_function('$event', 'return ob_start("ob_gzhandler");'),
'onEndRequest'=>create_function('$event', 'return ob_end_flush();'),
[...]