Using both chunked transfer encoding and gzip

Posted by RadiantHeart on Stack Overflow See other posts from Stack Overflow or by RadiantHeart
Published on 2010-04-18T02:19:18Z Indexed on 2010/04/18 2:23 UTC
Read the original article Hit count: 412

Filed under:
|
|
|
|

I recently started using gzip on my site and it worked like charm on all browsers except Opera which gives an error saying it could not decompress the content due to damaged data. From what I can gather from testing and googling it might be a problem with using both gzip and chunked transfer encoding. The fact that there is no error when requesting small files like css-files also points in that direction.

Is this a known issue or is there something else that I havent thought about?

Someone also mentioned that it could have something to do with sending a Content-Length header.

Here is a simplified version of the most relevant part of my code:

$contents = ob_get_contents();
ob_end_clean();
header('Content-Encoding: '.$encoding);
print("\x1f\x8b\x08\x00\x00\x00\x00\x00");
$size = strlen($contents);
$contents = gzcompress($contents, 9);
$contents = substr($contents, 0, $size);
print($contents);
exit();

© Stack Overflow or respective owner

Related posts about php

Related posts about gzip