unknown time remaining (force download)

im using this code:

[php]

<?php set_time_limit(0); $file = 'test.mp3'; header('Content-Description: File Transfer'); header("Content-Disposition: attachment; filename=\"$file\""); header('Content-Type: audio-x/mp3'); header('Content-Transfer-Encoding: binary'); header('Content-Length: ' . filesize($file)); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Expires: 0'); readfile($file); ?>

[/php]

when downloading i cant see the progress bar.

thanks.

Sponsor our Newsletter | Privacy Policy | Terms of Service