I am trying to download a zip file via php but the downloading breaks in between abruptly and the code is as follows:
<?php
$zip_file="uploads/".$path;
header('Content-type: application/zip');
header('Content-disposition: filename="'. $zip_file. '"');
header('Content-length:'. filesize($zip_file));
readfile($zip_file);
exit();
?>
The file I am trying to download is in the range of 50-100MB and above in size.Please help me to get through Thanks in advance