I have a server with hundreds of audio files on it (I own all of them by the way) where people can download them for free. I use the following PHP script to download the files:
<?php
header('Content-disposition: attachment; filename=audio.mp3');
header('Content-type: audio/mpeg');
readfile('Part1.mp3');
My viewers have complained, however, that it can take up to 30 seconds just for the download to begin. What can I do to improve the initialization speed of the download? Is it possible?
Additional Info:
My site is hosted by iPage.