次のコードで PHP を使用してダウンロードを開始します。
<?
$_REQUEST['file'] = urldecode($_GET['file']);
header("Content-type: application/x-file-to-save");
header("Content-Disposition: attachment; filename=".$_REQUEST['file']);
readfile($_REQUEST['file']);
?>
動作しますが、ダウンロードのサイズは不明で、ETA はありません...
どうすれば修正できますか?
ありがとう!