Search found 3 matches
- Fri Aug 06, 2004 2:37 pm
- Forum: PHP - Code
- Topic: Content-Length header not working!
- Replies: 6
- Views: 519
Ok... I downloaded this very useful little gizmo: http://www.blunck.info/iehttpheaders.html . It allows you to view the HTTP headers sent to the browser. It showed me that the content lenght header is actually sent to the browser, which I find odd. Here are the headers: HTTP/1.1 200 OK Date: Fri, 06...
- Fri Aug 06, 2004 11:53 am
- Forum: PHP - Code
- Topic: Content-Length header not working!
- Replies: 6
- Views: 519
- Fri Aug 06, 2004 9:53 am
- Forum: PHP - Code
- Topic: Content-Length header not working!
- Replies: 6
- Views: 519
Content-Length header not working!
Hi, I have a small problem with a download script I have made. Here is the code: (snipped authentication / anti-leech code) $size = filesize($path); header("Pragma: "); header("Cache-Control: "); header("Content-type: application/octet-stream"); header("Content-Dis...