עשיתי הורדה בצורה הבאה וזה לא מציג לי מד התקדמות
זה הקוד:
PHP קוד:
$files = "../".$folder;
if (file_exists($files)) {
header ("Content-Type: application/octet-stream");
header ("Accept-Ranges: bytes");
header ("Content-Length: ".filesize($files));
header ("Content-Disposition: attachment; filename=".$name);
ob_clean();
flush();
readfile($files);
exit;
}
תודה רבה.