Tagged Questions
0
votes
1answer
68 views
need help with zlib!
I wanted to compress my pages so I put
ob_start('ob_gzhandler');
at the beginning of my php header file. however as I was playing around I noticed it will give me a blank page if I start a session ...
0
votes
1answer
243 views
How do I gzip my html source
I would like to gzip the html sources of my webpages, what's the best way to do it on a lighttpd/php5 server.
I have tried to do it by editing my php.ini file with:
zlib.output_compression = On
...