简体   繁体   English

GET Flash文件(.swf)404错误

[英]GET flash file(.swf) 404 error

I just try to place a flash file in my site, but I see I get the 404 error. 我只是尝试将Flash文件放置在我的网站中,但看到了404错误。 I have looked for the flash file on the server and it exist, so I don't thinks it's the issue. 我已经在服务器上寻找闪存文件,并且该文件存在,所以我认为这不是问题。 I attach the code, and the error as well. 我附上代码,以及错误。

The code: 编码:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="480" height="430" id="move3" align="middle" viewastext>
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="/FilesDB/View3D/Movie_objID_3426_typeID_5.swf?NoCashe=1570316002" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#989866" />
    <embed src="/FilesDB/View3D/Movie_objID_3426_typeID_5.swf?NoCashe=1570316002" 
        quality="high" 
        bgcolor="#989866" 
        width="480" 
        height="430" 
        name="move3" 
        align="middle" 
        allowscriptaccess="sameDomain" 
        type="application/x-shockwave-flash" 
        pluginspage="http://www.macromedia.com/go/getflashplayer" 
    />
    </object>

The error: GET http://www.loveandpride.com/FilesDB/View3D/Movie_objID_3426_typeID_5.swf?NoCashe=1570316002 404 (Not Found) 错误:GET http://www.loveandpride.com/FilesDB/View3D/Movie_objID_3426_typeID_5.swf?NoCashe=1570316002 404(未找到)

Hope you can help me... Ben 希望你能帮我...本

My guess is some misconfiguration of iis web site; 我的猜测是iis网站的某些配置错误; infact http://www.loveandpride.com/FilesDB just response a 404 error, http://www.loveandpride.com/FilesDB/View3D/ too. 实际上, http://www.loveandpride.com/FilesDB只是响应404错误, http://www.loveandpride.com/FilesDB/View3D/也是如此。

Maybe FilesDb is configured as virtual directory pointing to an not existent location? 也许FilesDb被配置为指向不存在位置的虚拟目录?

Remove viewastext from your object element. object元素中删除viewastext

The viewastext attribute prevents an authoring tool from running the object at design time. viewastext属性可防止创作工具在设计时运行对象。 This attribute is not required if you do not use these tools and note that it can cause problems in some environments; 如果您不使用这些工具,并且注意到它在某些环境下会引起问题,则不需要此属性。 for example strict xhtml documents. 例如严格的xhtml文档。

Source: http://www.meadroid.com/scriptx/docs/printdoc.asp 资料来源: http : //www.meadroid.com/scriptx/docs/printdoc.asp

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM