i am trying to make force download of mp3 file instead of open in browser.
i am using the following code.
header('Content-Disposition: attachment; filename="' . $name . '"');
readfile($path);
exit();
This works fine, But the problem is resume/pause is not work and the total filesize/percentage is not mentioned when download the file. May i know how to fix this.