<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: phpBB mods: bbcode for ifilm, youtube and google video embedding</title>
	<atom:link href="http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/</link>
	<description>Mark Hutton</description>
	<lastBuildDate>Thu, 10 Sep 2009 06:41:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Asko</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-135374</link>
		<dc:creator>Asko</dc:creator>
		<pubDate>Sat, 07 Feb 2009 05:48:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-135374</guid>
		<description>Well , im from estonia so sorry when my english is not good , anyway , there was a bug for me , lucky me , because i understand php ...

well , if a do , like you said to do , then i get an zero result , no video appears , so i looked up and i discovered and a bug , well , atleast for me :D

[/youtube:$uid]

the $uid prefix , it sucks :D , i took it away and let it be just

[/youtube]

and now , it works like a charm :)</description>
		<content:encoded><![CDATA[<p>Well , im from estonia so sorry when my english is not good , anyway , there was a bug for me , lucky me , because i understand php &#8230;</p>
<p>well , if a do , like you said to do , then i get an zero result , no video appears , so i looked up and i discovered and a bug , well , atleast for me <img src='http://www.influenced.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>[/youtube:$uid]</p>
<p>the $uid prefix , it sucks <img src='http://www.influenced.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  , i took it away and let it be just</p>
<p>[/youtube]</p>
<p>and now , it works like a charm <img src='http://www.influenced.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: demipoulpe</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-102056</link>
		<dc:creator>demipoulpe</dc:creator>
		<pubDate>Sun, 12 Oct 2008 10:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-102056</guid>
		<description>You should authorized &quot;embed&quot; and &quot;object&quot; html tag   in your forum configuration :p</description>
		<content:encoded><![CDATA[<p>You should authorized &#8220;embed&#8221; and &#8220;object&#8221; html tag   in your forum configuration :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlkJack-21</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-33776</link>
		<dc:creator>BlkJack-21</dc:creator>
		<pubDate>Thu, 22 Nov 2007 16:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-33776</guid>
		<description>disregard above post...it won&#039;t let me display the code correctly! :(</description>
		<content:encoded><![CDATA[<p>disregard above post&#8230;it won&#8217;t let me display the code correctly! <img src='http://www.influenced.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlkJack-21</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-33774</link>
		<dc:creator>BlkJack-21</dc:creator>
		<pubDate>Thu, 22 Nov 2007 16:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-33774</guid>
		<description>&quot;Hey do you know how to modify the code so users will only have to put the url given in youtube inside [youtube] tags?&quot;

Here is the code for utube without size parameters.

	// [youtube] and [/youtube]
	$text = preg_replace(&quot;#\[youtube=([0-9a-z\-_]+):$uid\](.*?)\[/youtube:$uid\]#si&quot;, &quot;&quot;.&quot;[/youtube:$uid]&quot;, $text);
	$text = str_replace(&quot;[/youtube:$uid]&quot;, &quot;&quot;, $text);


// [youtube] and [/youtube] 
	$text = preg_replace(&quot;#\[youtube=([0-9]+[,][0-9]+[,][0-9a-z\-_]+)\](.*?)\[/youtube\]#si&quot;, &quot;[youtube=\\1:$uid]\\2[/youtube:$uid]&quot;, $text);

So you would enter it like this:

[youtube=Z_TvkB1-XeE]unicorn[/youtube]

still working on the other variatons...</description>
		<content:encoded><![CDATA[<p>&#8220;Hey do you know how to modify the code so users will only have to put the url given in youtube inside [youtube] tags?&#8221;</p>
<p>Here is the code for utube without size parameters.</p>
<p>	// [youtube] and [/youtube]<br />
	$text = preg_replace(&#8221;#\[youtube=([0-9a-z\-_]+):$uid\](.*?)\[/youtube:$uid\]#si&#8221;, &#8220;&#8221;.&#8221;[/youtube:$uid]&#8220;, $text);<br />
	$text = str_replace(&#8221;[/youtube:$uid]&#8220;, &#8220;&#8221;, $text);</p>
<p>// [youtube] and [/youtube]<br />
	$text = preg_replace(&#8221;#\[youtube=([0-9]+[,][0-9]+[,][0-9a-z\-_]+)\](.*?)\[/youtube\]#si&#8221;, &#8220;[youtube=\\1:$uid]\\2[/youtube:$uid]&#8220;, $text);</p>
<p>So you would enter it like this:</p>
<p>[youtube=Z_TvkB1-XeE]unicorn[/youtube]</p>
<p>still working on the other variatons&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-18056</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Tue, 26 Jun 2007 14:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-18056</guid>
		<description>Doesn&#039;t work.

Beforeyougopostal.com</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work.</p>
<p>Beforeyougopostal.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephen</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-16890</link>
		<dc:creator>stephen</dc:creator>
		<pubDate>Sat, 16 Jun 2007 18:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-16890</guid>
		<description>hi i want to stream flash videos from my phpbb, if you can help email stevepip888@aol.com</description>
		<content:encoded><![CDATA[<p>hi i want to stream flash videos from my phpbb, if you can help email <a href="mailto:stevepip888@aol.com">stevepip888@aol.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-10002</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 06 May 2007 10:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-10002</guid>
		<description>Hey do you know how to modify the code so users will only have to put the url given in youtube inside [youtube]  tags?

for example,

[youtube]http://www.youtube.com/watch?v=Z_TvkB1-XeE[/youtube]


instead of specifying the width,, height and all? that will be better</description>
		<content:encoded><![CDATA[<p>Hey do you know how to modify the code so users will only have to put the url given in youtube inside [youtube]  tags?</p>
<p>for example,</p>
<p>[youtube]http://www.youtube.com/watch?v=Z_TvkB1-XeE[/youtube]</p>
<p>instead of specifying the width,, height and all? that will be better</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnny</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-6749</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Wed, 11 Apr 2007 18:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-6749</guid>
		<description>Wow you don&#039;t understand how long I have been looking for a simple youtube mod like this!! Thank you thank you thank you!! this is straight foward to the point AND ONLY TOW STEPS!!. All the other sites have broken links to mods and crappy directions! anyway thought I would send you some props for this entry so thank you once again!!!</description>
		<content:encoded><![CDATA[<p>Wow you don&#8217;t understand how long I have been looking for a simple youtube mod like this!! Thank you thank you thank you!! this is straight foward to the point AND ONLY TOW STEPS!!. All the other sites have broken links to mods and crappy directions! anyway thought I would send you some props for this entry so thank you once again!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Masaxgpmat</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-3969</link>
		<dc:creator>Masaxgpmat</dc:creator>
		<pubDate>Sun, 18 Mar 2007 12:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-3969</guid>
		<description>doesnt work :(</description>
		<content:encoded><![CDATA[<p>doesnt work <img src='http://www.influenced.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeno</title>
		<link>http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/comment-page-1/#comment-2159</link>
		<dc:creator>Zeno</dc:creator>
		<pubDate>Wed, 24 Jan 2007 11:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.influenced.net/2006/09/21/phpbb-mods-bbcode-for-ifilm-youtube-and-google-video-embedding/#comment-2159</guid>
		<description>I can&#039;t get this to work, is this compatible with v2.0.22 of the phpBB code?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get this to work, is this compatible with v2.0.22 of the phpBB code?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
