Jump to content

unknown time remaining (force download) (Read 6 times)


ykach

Recommended Posts

im using this code:

 

PHP Code: [select]

 

<?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);
?>

 

when downloading i cant see the progress bar.

 

thanks.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.