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_fileholds the file path$zip_nameholds the zip name- file is really zero-length (opened in text-editor it doesn't contain a single byte)
error_reportingisOn(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
is_readable()instead offile_exists(). is_readable checks whether the file exists and is readable. – JohnP Mar 21 '11 at 8:09