So I'd read may be all threads in forum but did not found any help for my problem.
I added a new source for video files from a Bulgarian site Vbox7 Покажи Твоите Видео Клипове.
Here is the code that they provide for embedding videos in your site:
------------------------------------------------------------------
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="450" height="403"><param name="movie" value="http://i47.vbox7.com/player/ext.swf?vid=ff4ad560"><param name="quality" value="high"><embed src="http://i47.vbox7.com/player/ext.swf?vid=ff4ad560" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="403"></embed></object>
--------------------------------------------------------------------
So I've added in function.embedvideos.php these rows:
--------------------------------------------------------------------
// code to replace <vbox7> tags with
$Vbox = '<object width="450" height="403"><param name="movie" value="http://i47.vbox7.com/player/ext.swf?vid=$1"></param><param name="wmode" value="transparent"></param><embed src="http://i47.vbox7.com/player/ext.swf?vid=$1" type="application/x-shockwave-flash" wmode="transparent" width="450" height="403"></embed></object>' . $post_video_html;
// replace <vbox7> tags with the vbox7 code
$displayed_story = preg_replace("/\<vbox\>(.+?)\<\/vbox\>/is", $Vbox, $displayed_story);
--------------------------------------------------------------------
Also added tags <vbox> in submit in admin panel.
... and after that typed in description for post this <vbox>ff4ad560</vbox>
And of course it does not works :-)
it shows me only ff4ad560 - the clip ID.
And the picture is in attachment.
I'm running latest vaersion of pligg 9.8.2
Have any ideas 'bout that?



27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="450" height="403"><param name="movie" value="http://i47.vbox7.com/player/ext.swf?vid=ff4ad560"><param name="quality" value="high"><embed src="http://i47.vbox7.com/player/ext.swf?vid=ff4ad560" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="403"></embed></object>
Reply With Quote



