Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 8 回覆
  • 7 有這個問題
  • 3 次檢視
  • 最近回覆由 bobkramer

more options

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)

more options

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 於 修改

more options

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 於 修改

more options

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>
more options

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?

more options

選擇的解決方法

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.

more options

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

more options

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

more options

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