Tagged Questions

2
votes
1answer
255 views

File size will not display on PHP download script during file download

I am using a PHP script to download a file when you go to a page, but I can't set it up so that when a person downloads the file, it will show the file size (mine shows "unknown time remaining"). I've ...
2
votes
2answers
862 views

How to calculate Content-Length for a file download within Kohana PHP?

I'm trying to send a file from within a Kohana model to the browser, but as soon as I add a Content-Length header, the file doesn't start downloading right away. Now the problem seems to be that ...
1
vote
1answer
86 views

Custom CMS written in PHP, should I be sending HTTP content-length header to clients?

I've built a custom content management system on our intranet which allows us to update news articles and content across several sites that I operate. It appears to be working well. However the other ...
1
vote
2answers
270 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
401 views

How to get the file size of a remotely stored image? (php)

Let's say we have an image file, stored in a remote server (for example, let's take this image), how can we determine (in PHP code) it's file size? If the file was on server, we would have used ...
1
vote
2answers
212 views

PHP returning content-length of 0 to python's urllib

My code fetches CSV data from a PHP page using httplib. When I open the page in Firefox or Chrome, the data displays just fine. However, when I try to fetch it with my python code, I get a header with ...
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
0answers
26 views

Detecting partially uploaded files?

I have a webapp which reads from the php://input and it streams from it and than stores that data in a new file, however, because of this, a person might upload a file partially and it'll still be ...
0
votes
3answers
120 views

Is there any way to configure php to always set $_SERVER['CONTENT_LENGTH']?

I'm working on carddav client. As server i use davical v. 0.9.9.6. I don't understand why i'm getting invalid content-type error when http headers contains correct value. I look into source code and ...
0
votes
0answers
124 views

How to detect the size of file, before download (while remote downloading)? [closed]

Possible Duplicate: How to detect the finish with file_put_contents() in php? I'm making a download script in PHP. Like following: 1) $item = file_get_contents($url); 2) echo "To download: ...
0
votes
1answer
201 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 ...