Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

საიტის გასაუმჯობესებელი სამუშაოების მიმდინარეობისას, შესაძლებლობების ნაწილი შეიზღუდება. თუ სტატიით ვერ მოახერხებ ხარვეზის გამოსწორება და შეკითხვის დასმა გსურთ, ჩვენი მხარდაჭერის გუნდი დაგეხმარებათ @FirefoxSupport გვერდის მეშვეობით Twitter-ზე და /r/firefox განყოფილებაში Reddit-ზე.

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Firefox shows an old version of a website and not the updated version

  • 8 პასუხი
  • 7 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 3 ნახვა
  • ბოლოს გამოეხმაურა bobkramer

I have changed a Flash video on my website but FF still shows the old video. I looked at the source code and it is for the new version. In IE, I see the new version. I have cleared the history and cache on FF, but still see the old movie. I am using FF 4.0.1

The link to the video is: http://www.intrinsiccaptures.com/gallery.html

I have changed a Flash video on my website but FF still shows the old video. I looked at the source code and it is for the new version. In IE, I see the new version. I have cleared the history and cache on FF, but still see the old movie. I am using FF 4.0.1 The link to the video is: http://www.intrinsiccaptures.com/gallery.html

გადაწყვეტა შერჩეულია

I'm not on Windows, so can't test if the WMP plugin can play the file.
I do not have a plugin on Linux that plays MIDI files embedded.
You can try to install the new WMP plugin to see if that plugin can handle the file.

პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (8)

The page source show a different src (intrinsic%20captures.swf) for Firefox in the embed then IE see in the object param movie (intrinsic.swf)
So you need to change that and make both SWF links the same.

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
 width="800" height="630" id="tech" align="middle">
<param name="movie" value="intrinsic.swf" />
<embed src="intrinsic%20captures.swf" quality="high" width="800" height="630"
 name="tech" align="middle" allowscriptaccess="sameDomain" type=
"application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>

ჩასწორების თარიღი: , ავტორი: cor-el

cor-el,

Thank you for taking the time to help me, much appreciated. You were correct in your finding. I have changed the source code and FF now sees the new video.

But, now that it's corrected, FF does not play the midi file. It does play on IE and did play before I changed the Flash file code. Do I need a different code for midi files on FF? Any help would be appreciated.

Thanks again for your time.

Bob

ჩასწორების თარიღი: , ავტორი: bobkramer

You can add a type attribute to the EMBED tag to make Firefox use a specific plugin.
If you use type="application/x-mplayer2" then the WMP plugin will play the file.
It is also better to move that code to the BODY section instead of placing it in the HEAD section (Firefox will move it to the body anyway).

<EMBED src="Ave_Maria_Bach.mid" type="application/x-mplayer2" autostart=true
 loop=true volume=100 hidden=true><NOEMBED><BGSOUND src="Ave_Maria_Bach.mid"></NOEMBED>

Thank you for your reply ........ I added your script into the body but still no music on FF. It still works on IE though. Maybe I did something incorrect?

შერჩეული გადაწყვეტა

I'm not on Windows, so can't test if the WMP plugin can play the file.
I do not have a plugin on Linux that plays MIDI files embedded.
You can try to install the new WMP plugin to see if that plugin can handle the file.

The embedded midi file plays fine in Firefox 4 on Windows 7 with the new WMP plugin.

My next question was going to be if I might be missing a plug-in ......and I was. This last message of yours fixed the problem for me on FF.

I really appreciate your help.....I would have been trying forever to solve this on my own.

Thanks again,

Bob

Thank you Alice ......I finally got it to play on my computer using FF. I appreciate you taking the time to write.