garfield.arlene Posted September 24, 2008 Share Posted September 24, 2008 I'm having trouble getting this object to load a music file when the file is located on a mounted directory. It does not matter if the directory is web-accessible or not. I've tried using a "soft link" to the music directory, that doesn't work either. <object width="350" height="350" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" id="mediaplayer1"> <param name="Filename" value="<?php echo 'music/'.$_GET[song]; ?>"> <param name="AutoStart" value="False"> <param name="ShowControls" value="True"> <param name="ShowStatusBar" value="True"> <param name="ShowDisplay" value="True"> <param name="AutoRewind" value="False"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/" width="350" height="350" src="<?php echo 'music/'.$_GET[song]; ?>" filename="<?php print $_GET[song]; ?>" autostart="False" showcontrols="True" showstatusbar="True" showdisplay="False" autorewind="True"> </embed> </object> Any help would be appreciated... TIA Link to comment https://forums.phpfreaks.com/topic/125565-web-audovideo-objects-error-when-from-a-mounted-directory/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.