I have the following PHP code to download files using readfile:
$file = "test.zip";
$path = dirname(__FILE__)."/".$file;
$size = filesize($path);
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: application/zip");
header("Content-Disposition: attachment; filename=\"" .$file. "\";");
header("Content-Transfer-Encoding: binary");
//header("Content-Length: $size");
header("Content-Length: 2222");
readfile($path);
This will pop up a download window with file name and size.
I tested in InMotion shared hosting, everything is good: correct size displayed and downloaded. But it's different in JustHost shared hosting: allways shows me (-1 bytes) and downloads the whole file. So no progress bar in download window.
Please help me fix it, thanks