为提升港台主机在国内的访问速度,我司对港台主机的图片进行了国内缓存(访问速度比非缓存情况下能提升一倍)。 部分用户使用了bcastr3.swf的通用播放器的网页,可能因此出现幻灯片无法播放图片的现象。
您可以在您的网站程序中将这个播放器更新到一个新版本就可以恢复显示了。以下步骤建议有网页代码基础的技术人员进行操作,且操作前先对要操作文件备份,避免将网站程序修改出错导致网站无法正常访问。
首先:在您的网站源码中找到使用bcastr3.swf的文件,一般来说在模板文件里。比如bcastr3.swf在您的模板首页里。您的模板文件是放在wwwroot/template/default/index.htm,请将index.htm文件下载到您本地,并先备份。
其次:下载http://downinfo.myhostadmin.net/flash_fix.txt和http://downinfo.myhostadmin.net/flash_fix.rar 到您本地
flash_fix.rar下载后将解压出来的focus.swf上传至网站根目录(wwwroot/)
用记事本或者其他经常使用的网页编辑工具打开模板index.htm文件,在源码状态下,找到以下代码:
用下载的flash_fix.txt文档中的代码进行替换。如图:
如果是织梦的程序 只要改替换成
config= '6|0xffffff|0x0099ff|50|0xffffff|0x0099ff|0x000000';
var swf_dir="/focus.swf"; //flash播放器路径
document.write('<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="'+swf_width+'" height="'+swf_height+'">');
document.write('<param name="movie" value="'+swf_dir+'" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="menu" value="false" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="FlashVars" value="config='+config+'&bcastr_flie='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'" />');
document.write('<embed src="'+swf_dir+'" wmode="opaque" FlashVars="config='+config+'&bcastr_flie='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'" menu="false" quality="high" width="'+swf_width+'" height="'+swf_height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
</script>
注意,以下四项如果原来文件里已经有设置,则不用复制这四项:
var swf_width=288; //宽度
var swf_height=235; //高度
var files = ''; //用|分隔的图片列表
var links = ''; //用|分隔的连接
如果实在难以解决,可以提交有问必答,申请改为非缓存模式,但这样会导致访问速度较慢。