genu Posted May 4, 2008 Share Posted May 4, 2008 is there a way to make an <a href="mp3 url">Download</a> that opens up the download dialog rather than the default player which plays it automatically? Link to comment https://forums.phpfreaks.com/topic/104057-mp3-link/ Share on other sites More sharing options...
AndyB Posted May 4, 2008 Share Posted May 4, 2008 only if your users know - or are told - to right click the link to see browser options Link to comment https://forums.phpfreaks.com/topic/104057-mp3-link/#findComment-532676 Share on other sites More sharing options...
ToonMariner Posted May 7, 2008 Share Posted May 7, 2008 http://elouai.com/force-download.php a golden oldie - there are probably better scripts out there but this is the first in the list from google... Link to comment https://forums.phpfreaks.com/topic/104057-mp3-link/#findComment-535149 Share on other sites More sharing options...
The Little Guy Posted May 8, 2008 Share Posted May 8, 2008 make an .htaccess file, and add this: This will force all mp3 downloads, no matter how you access it. <FilesMatch "\.(mp3)$"> ForceType application/octet-stream </FilesMatch> if you want more than just mp3, just change (mp3) to something like this: (mp3|wma|ogg) Link to comment https://forums.phpfreaks.com/topic/104057-mp3-link/#findComment-535895 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.