I am trying to use this code to download a .zip file
<?php
$file = "something.zip";
$size = filesize($file);
header('Content-type: application/octet-stream');
header("Content-length: $size");
header('Content-Disposition: attachment; filename="downloaded.zip"');
readfile($file);
?>
but it does not seem to work, even when I try to set the filesize to a number like header("Content-length: 567247784");
. I only get a file that either has no size declared, or a small file size like 28 bytes.
I looked at this question, and I think I have the same problem as the poster, but his solution is "there was a server problem". I think I also have a server configuration issue, but his answer does not help me at all.