Flowplayer 仅适用于本地主机。在服务器上不起作用

发布于 2024-09-02 05:36:54 字数 473 浏览 2 评论 0原文

我在正确设置 Flowplayer 时遇到了一些问题。当我在本地主机上工作时,一切似乎都工作正常,但是当我将站点复制到服务器时,播放器将无法正确加载。

调整锚标记的大小以设置参数并填充对象标记,但不显示任何内容。有趣的是,当带有 flowplayer 的页面的一部分位于 firebug 后面或调整浏览器窗口大小时,播放器会正确加载。 我该如何解决这个问题?

我用以下代码加载播放器:

$(document).ready(function() { $f("movie", {src: "public/flash/flowplayer.swf", wmode: "transparent"}, {
  clip: {
          autoPlay: false,
          autoBuffering: true
         }                          
   }           
); });

I have a bit of a problem with setting flowplayer right. When I worked on localhost everything seemed to work fine but when I copied my site to server player won't load properly.

The anchor tag is re-sized to set parameters and is filled with object tag but nothing is displayed. Interesting thing is that when part of page with flowplayer is behind firebug or browser window is re-sized then player loads properly.
How I can fix this problem ?

I load player with this code:

$(document).ready(function() { $f("movie", {src: "public/flash/flowplayer.swf", wmode: "transparent"}, {
  clip: {
          autoPlay: false,
          autoBuffering: true
         }                          
   }           
); });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九厘米的零° 2024-09-09 05:36:54

在与 FlowPlayer 相同的文件夹中创建一个 htaccess 文件

Options +FollowSymLinks
RewriteEngine on

重写规则。 - [E=no-gzip:1]

对我有用。

make a htaccess file in the same folder as your flowplayer is

Options +FollowSymLinks
RewriteEngine on

RewriteRule . - [E=no-gzip:1]

that worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文