This is weird.

I have a script which sends local zip files to the user via browser. The script has worked fine so far without any problems. Today my colleague notified me about the script is sending zero-length files.

Some background info:

  • Server settings has not been modified before the script went wrong
  • Different browsers tested (same on Chrome/Firefox)
  • Previous zip files (which worked fine before) are zero-length too
  • Script founds the files on the server
  • File size (when echoed for debugging) is correct
  • Tried to tweak server settings and script as adviced here with no success.

UPDATES:

  • is_readable() returns 1
  • file sizes may vary between 5Mb and 100Mb (not specific)
  • $zip_file holds the file path
  • $zip_name holds the zip name
  • file is really zero-length (opened in text-editor it doesn't contain a single byte)
  • error_reporting is On (E_ALL) shows nothing
  • without headers the browser displays the zip 'source' correctly
  • Safari says: '0 bytes of? cannot decode raw data' first useful(?) symptom

Snippet in question:

if (file_exists($zip_file)) {
    header('Content-type: application/zip');
    header('Content-disposition: filename="' . $zip_name . '"');
    header("Content-length: " . filesize($zip_file));
    readfile($zip_file);
    exit();
}

How can i debug this easily?

Thanks in advance, fabrik

link|improve this question

Stupid question: does the file exist? – The Guy Of Doom Mar 21 '11 at 8:08
3  
you might want to use is_readable() instead of file_exists(). is_readable checks whether the file exists and is readable. – JohnP Mar 21 '11 at 8:09
Are they zero-length, or very small-length? In the latter case, they may contain a PHP error message. Just fetch the file and open it with a text editor – Unicron Mar 21 '11 at 8:09
@TGOD Please read my question attentively: "Script founds the files on the server" – fabrik Mar 21 '11 at 8:09
@JohnP, @Unicron just updated my question in response your tips. Thank you. – fabrik Mar 21 '11 at 8:12
show 10 more comments
feedback

4 Answers

http://www.php.net/manual/en/function.readfile.php#102137 :

It should be noted that in the example:

header('Content-Length: ' . filesize($file));

$file should really be the full path to the file. Otherwise content length will not always be set, often resulting in the dreaded "0 byte file" problem.

link|improve this answer
Thanks for the tip but if i'm echoing the file size it gives me the correct value. – fabrik Mar 21 '11 at 8:21
does not matter, when the browser starts receiving the file the only way f9or it to know the full size is via the headers. – RobertPitt Mar 21 '11 at 8:25
@Robert i mean echoing for debugging. – fabrik Mar 21 '11 at 8:40
Remove header('Content-Length: ' . filesize($file)); for debugging. – powtac Mar 21 '11 at 9:02
@powtac: no difference :( – fabrik Mar 21 '11 at 9:15
feedback

The biggest issue here I think is the way your sending the file, have you tried sending in within chunks:

if (file_exists($zip_file))
{
    header('Content-type: application/zip');
    header('Content-disposition: filename="' . $zip_name . '"');
    header("Content-length: " . filesize($zip_file));

    $resource = fopen($zip_file,'r');
    while(!feof($resource))
    {
         $chunk = fread($resource,4096);
         //....
         echo $chunk;
    }

    exit();
}
link|improve this answer
Thanks for the tip but it doesn't helped me in any way. Btw when everything will be fine, i'll implement your solution. +1 – fabrik Mar 21 '11 at 8:33
feedback

Try to add attachment; and use a different browser.

header('Content-disposition: attachment; filename="' . $zip_name . '"');
link|improve this answer
it doesn't helped :( – fabrik Mar 21 '11 at 9:16
So, try it with a simple file which contains only a few chars... – powtac Mar 21 '11 at 10:08
Look my own answer. It was totally my fault, sorry. stackoverflow.com/questions/5375143/… – fabrik Mar 21 '11 at 10:10
feedback
up vote 0 down vote accepted

My. Lame. Fault. Sorry for everyone.

Just tweaked the code a week ago and added:

if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {
    ob_start('ob_gzhandler');
} else {
    ob_start();
}

What caused this anomaly. :(

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.