Featured post
php - can you gzip with zlib compression off -
i trying speed website optimization off websites lack in speed. using http://gtmetrix.com/ test website speed.
one thing need use gzip compression. spent ages trying work , not figure out going wrong.
if click more information in web developer toolbar said gzip enabled decieving isn’t. contacted hosting providers , got following response:
unfortunately not, gzip cause load on our hosted servers therefore similar programs cause same strain.
so when says enabled, think right in saying need check in php.ini file is:
zlib.output_compression off off zlib.output_compression_level -1 -1 zlib.output_handler no value no value
ok, assume needs set on allow gzip compression. correct?
basically have go dedicated server allow gzip £70 month.
so guess asking is: there way using php utillise gzip compression without being enabled hosting provider? have tried many option none successful far.
thanks
gzip/deflate adds no significant load. rip-off prices aren't worth however.
as php, can enabled within scripts:
ob_start("ob_gzhandler");
would emulatable via gzencode() if not available; overhead i'd assume..
- Get link
- X
- Other Apps
Comments
Post a Comment