SuprBay: The PirateBay Forum

Full Version: Can't See Videos?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hope i've posted in the correct forum. If not, apologies MODs'

Any way. I'm unable to see ANY videos posted on the forum. I've tried with Firefox, Cyberfox and Chrome but no look.

E.g: The thread below is what i see. any help would be great Smile

https://pirates-forum.org/showthread.php?tid=353





[Image: yvPofqU.png]
sometimes adblock plus will block youtube videos.
(Oct 29, 2013, 05:02 am)stormium Wrote: [ -> ]sometimes adblock plus will block youtube videos.

Just disabled it completely stormium. Cleared cache, cookies, history etc and still no luck. This has me baffled?
can you view youtube videos by going to the youtube site?
I cant see them either, someone will look in to it.
Fixed , actually we did nothing but i can see youtube video in the forum no problem and admin confirms this so i suggest you check things on your end.
(Oct 29, 2013, 05:25 am)stormium Wrote: [ -> ]can you view youtube videos by going to the youtube site?

yes i can see them on youtube stormium

(Oct 29, 2013, 06:00 am)Kingfish Wrote: [ -> ]I cant see them either, someone will look in to it.

If you get a fix can you post it Kingfish. I'm still unable to see videos on the forum?
The problem is likely your browser security settings.

The video in the above referenced thread is loaded with an iframe using a HTTP url, while SB loads pages using HTTPS. Many browsers will not load insecure content on a secure page.

If you are using Firefox, you have to actively tell it to load insecure content.

[Image: OgefYuK.png]
(Oct 29, 2013, 13:15 pm)Kjf Wrote: [ -> ]The problem is likely your browser security settings.

The video in the above referenced thread is loaded with an iframe using a HTTP url, while SB loads pages using HTTPS. Many browsers will not load insecure content on a secure page.

If you are using Firefox, you have to actively tell it to load insecure content.

[Image: OgefYuK.png]

Got it kjf Smile !! Many thanks and welcome back Wink
This should be a simple fix right?
Simply change the embed code Smile
http://mods.mybb.com/view-resource/youtube-mycode
Instead of linking to non-secure content, you should change the code to use the SSL version of youtube.

Code could be changed from:
Code:
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/$2"></param><embed src="http://www.youtube.com/v/$2" type="application/x-shockwave-flash" width="425" height="350"></embed></object>
to:
Code:
<object width="425" height="350"><param name="movie" value="https://www.youtube.com/v/$2"></param><embed src="https://www.youtube.com/v/$2" type="application/x-shockwave-flash" width="425" height="350"></embed></object>
Making videos appear without the user having to think about why the videos won't show Smile

//iStream
Pages: 1 2