Tagged Questions

1
vote
2answers
289 views

content-length header from php is overwritten !

I'm trying to figure why the Content-Length header of php gets overwritten. This is demo.php <?php header("Content-Length: 21474836470");die; ?> a request to fetch the headers curl -I ...
1
vote
2answers
683 views

Site incredibly slow for firefox, instant on every other browser: KeepAlive issue?

I have a site where a page takes 10 seconds to load with firefox, and a further 10 seconds to load the images. It's a php page running on apache. The Images are just static images. It runs ...
1
vote
4answers
2k views

Content-Length header always zero

I set a header in the following way: header('Content-Length: ' . filesize($strPath)); On my PC with ZendServer it works fine and I can download a file with the correct file size. On the production ...
0
votes
1answer
216 views

HTTP Content-Length header has 1 byte too many

I'm writing a (PHP) script that serves files to the client. Among others, the Content-Length header is sent, only it has one byte too many. I discovered this when I put the content length in a ...