Forum Moderators: phranque
Please help.
if the browser finds the file it should open it
also the server mime types may not be configured
this is the mime type for flash
AddType application/x-shockwave-flash swf (in the htaccess file)
or
embed type="application/x-shockwave-flash (in the html)
it can appear either in the code for the emeded flash object in the actual html or you can drop it in your htacess file
here's a sample of how it may look in the embeded code for the flash
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0"
id="index" width="606" height="585">
<param name="movie" value="index.swf">
<param name="bgcolor" value="#000000">
<param name="quality" value="high">
<param name="allowscriptaccess" value="samedomain">
<embed type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
width="606" height="585"
name="index" src="index.swf"
bgcolor="#000000" quality="high"
swLiveConnect="true" allowScriptAccess="samedomain"
></embed>