I was notified by some of my forum members that they could no longer embed Youtube videos.
I was able to identify that youtube url's starting with http:// embedded just fine but youtube url's starting with https:// would post as a link vs. embedding.
I have phpBB vs 3.0.11 installed
My original custom BBcode was:
Code: Select all
[youtube]http://www.youtube.com/watch?v={SIMPLETEXT}[/youtube]
Code: Select all
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/{SIMPLETEXT}"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/{SIMPLETEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
Code: Select all
[youtube]{IDENTIFIER}://www.youtube.com/watch?v={SIMPLETEXT}[/youtube]
Code: Select all
<object width="425" height="350"><param name="movie" value="{IDENTIFIER}://www.youtube.com/v/{SIMPLETEXT}"></param><param name="wmode" value="transparent"></param><embed src="{IDENTIFIER}://www.youtube.com/v/{SIMPLETEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
