Can't download with Firefox
Can't download with Firefox
When I want to save the tracks by left clicking on them in Firefox, the MP3 loads up in the browser using the Quicktime plugin. When I try to save them using right click, it wants to save them as "getfile.php".
Could you please fix this?
Could you please fix this?
Re: Can't download with Firefox
I don't think anyone but you yourself can do anything about that. Just remove the association of MP3 -> Quicktime.MiniMe wrote:When I want to save the tracks by left clicking on them in Firefox, the MP3 loads up in the browser using the Quicktime plugin. When I try to save them using right click, it wants to save them as "getfile.php".
Could you please fix this?
Or use a downloadmanager that'll accept the .php file, and will redirect. I use http://www.freedownloadmanager.org/ , which is free and quite good ( especially for its price )
Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well preserved body, but rather to skid in sideways, chocolate in one hand, body thoroughly used up, totally worn out and screaming 'WOO HOO what a ride'
* gulps in some not too nice comments, and continues to listen to X-Formz' "Trolls" *MiniMe wrote:FFrenzy: What a stupid suggestion.
Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well preserved body, but rather to skid in sideways, chocolate in one hand, body thoroughly used up, totally worn out and screaming 'WOO HOO what a ride'
-
- Forum God
- Posts: 5307
- Joined: 22/11/2002 - 12:21
- Location: Dubai. No, not really.
- Contact:
You're coming across as rude and pushy. Can you please restrain yourself from directing scorn at people who are only trying to help? Even your initial post came over as bad tempered and bossy. Do you even know it's a Mime-type problem? If so, have you got any sensible suggestions as to what could be changed at the server-end based on your knowledge? Or are you just assuming things in order to make throwaway negative comments about the site?MiniMe wrote:FFrenzy: What a stupid suggestion. I like to listen MP3s using the Quicktime plugin if I want to and have no problem saving MP3s on other sites that get the MIME-type on their server right.
Chris
Won't somebody PLEASE think of the children?
- Vosla
- General Pain In The Forum's Ass
- Posts: 3680
- Joined: 02/12/2002 - 0:12
- Location: On the same little planet as you. Be VERY afraid!
- Contact:
Doesn't count for redirected links here as getfile.php doesn't point to the MIME-type for MP3s.MiniMe wrote:[...] have no problem saving MP3s on other sites that get the MIME-type on their server right. [...]
Servers "that get the MIME-type right" have links directly pointing to the corresponding MP3.
You may check this by hovering your mouse over such a link and checking the status-line in your browser where the actual link *should* appear.
All is lost.
getfile.php used mime-type with header informations to save it i think. this does'nt work on all browsers...
my exsample:
i don't know if it works on firefox =)
my exsample:
Code: Select all
<?php
if($file == "1") {
$send_me = "mysoundfile.mp3";
$basedir = $DOCUMENT_ROOT."/sounds/";
$filename = $basedir.$send_me;
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"".$send_me."\"");
readfile($filename);
}
else {
header("Location: http://www.mylocationtojumpwhen1is'ntset.com");
}
?>
I have seen often those problems... Some Browsers don't read out header informations or you can set it = off...
To fix this problem:
Create automatic zip File with the MP3 inside and if you want some Informations the user give in by upload a Remix. zip files will not streamed by Quicktime...
Regards,
Daxx
To fix this problem:
Create automatic zip File with the MP3 inside and if you want some Informations the user give in by upload a Remix. zip files will not streamed by Quicktime...
Regards,
Daxx