megetron Posted March 13, 2012 Share Posted March 13, 2012 Hello php freaks, I have a strange problem that happens to one of my clients. when using firefox he gets this error "a plugin is needed to display this content" for flash files display. he can see other flash files from other sites. even from my website (on other pages). but not from a specific page called "code.php" . code.php : $topm = $track_site_url."/m/images/flash/".$width."_".$height.".swf"; $trackurl = "$track_site_url/trackingcode.php?aid=$affilid&linkid=F$curid&Act=Rotator"; $trackurl_ForFlash = str_replace("&","%26",$trackurl); $imagelist = "<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 width=$width height=$height><param name=movie value=$cururl?clickTAG=$trackurl_ForFlash /><param name=quality value=high /><EMBED src=$cururl?clickTAG=$trackurl_ForFlash quality=4 width=$width height=$height pluginspage=http://www.macromedia.com/go/getflashplayer/></object>"; } echo "document.write('$imagelist');"; The client translate in his web page this code: <script language="javascript" type="text/javascript" src="http://domain.com/affiliates/code.php?id=11324240&affilid=1000107&width=160&height=600"></script> can you take a wild guess what this can be? Thanks, Link to comment https://forums.phpfreaks.com/topic/258821-problem-a-plugin-is-needed-to-display-this-content/ Share on other sites More sharing options...
ManiacDan Posted March 13, 2012 Share Posted March 13, 2012 You don't have any quotes around your attributes for that object tag, maybe it's malformed. What plugin does the client say he needs? Maybe his flash player is woefully out of date. Link to comment https://forums.phpfreaks.com/topic/258821-problem-a-plugin-is-needed-to-display-this-content/#findComment-1326821 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.