i need a script that make downloads from files but it must support resuming
for getright and download acelerator pro.
Thanks...
I have this classic download script , but does not support resuming
error_reporting(0);
header("Last-Modified: " . gmdate("D, d M Y H:i:s T",
filemtime($filename)));
header("Accept-Ranges: bytes");
header("Content-Length: " . filesize($filename));
header("Content-Disposition: attachment; filename=" . $download);
// header("Content-Type: application/octet-stream");
readfile($filename);
header("Connection: close");
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php