On 31/01/12 03:37, Tom Hutchison wrote:
As you can see this is a Nginx server. On an Apache server with 16.0, only one content-length is sent. Could that be the issue and how do I solve it? Thanks.
Tom
I suspect that may be a php bug (the difference in Apache could lie in the SAPI or in Apache cleaning up the output).
What's the number of Content-Lengths of these php scripts ? <?php header("Content-Length: 6"); echo "Hello\n";
<?php header("Content-Length: 6"); header("Content-Length: 6"); echo "Hello\n";