Resumable downloads when using PHP to send the file?
We are using a PHP scripting for tunneling file downloads, since we don't want to expose the absolute path of downloadable file: header("Content-Type: $ctype"); header("Content-Length: " . filesize($file)); header("Content-Disposition: attachment; filename=\"$fileName\""); readfile($file); Unfourtunately we noticed that downloads pass...