flash - embed video object in html -


i embed video in html page swf file. running on local host when run on live server. dosent work properly. link flv video in swf file , embed in html.

<script type="text/javascript"> ac_fl_runcontent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','600','height','338','title','testing','src','edit_video/9vi/home-page2','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?p1_prod_version=shockwaveflash','movie','edit_video/9vi/home-page2' ); //end ac code </script><noscript><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="600" height="338" title="testing">   <param name="movie" value="edit_video/9vi/home-page2.swf" />   <param name="quality" value="high" />   <embed src="edit_video/home-page2.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?p1_prod_version=shockwaveflash" type="application/x-shockwave-flash" width="600" height="338"></embed> </object></noscript> 

running on local host when run on live server

one reason can careless handling of case.

windows native filesystems case-insensitive, can refer edit_video , if real name of directory edit_video small e doesn't care. if upload server running case-sensitive filesystem (like linux hosts), won't work more; 2 different filenames , won't match.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -