• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 06:33
CET 12:33
KST 20:33
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT25Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0241LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2
StarCraft 2
General
Behind the Blue - Team Liquid History Book Weekly Cups (Feb 16-22): MaxPax doubles How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? ByuL: The Forgotten Master of ZvT Liquipedia WCS Portal Launched
Tourneys
PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament StarCraft Evolution League (SC Evo Biweekly) How do the "codes" work in GSL? LiuLi Cup: 2025 Grand Finals (Feb 10-16)
Strategy
Custom Maps
Map Editor closed ? [A] Starcraft Sound Mod
External Content
Mutation # 514 Ulnar New Year The PondCast: SC2 News & Results Mutation # 513 Attrition Warfare Mutation # 512 Overclocked
Brood War
General
TvZ is the most complete match up CasterMuse Youtube A cwal.gg Extension - Easily keep track of anyone A new season just kicks off Recent recommended BW games
Tourneys
Escore Tournament StarCraft Season 1 [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1 Small VOD Thread 2.0
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular? Current Meta
Other Games
General Games
Beyond All Reason Nintendo Switch Thread Battle Aces/David Kim RTS Megathread New broswer game : STG-World Diablo 2 thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread Canadian Politics Mega-thread Ask and answer stupid questions here!
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
Formula 1 Discussion 2024 - 2026 Football Thread TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Life Update and thoughts.
FuDDx
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2083 users

Opera browser help !

Blogs > SkelA
Post a Reply
SkelA
Profile Blog Joined January 2007
Macedonia13069 Posts
April 15 2010 14:11 GMT
#1
I got a problem with Opera in the past few days. I cant watch youtube vids anymore... when i open a video it shows " Old Flash? Go upgrade! " So i click the link and install the latest flash player but its still the same.

Youtube vids work on firefox,chrome and even the older 10.01 version on Opera but not on the latest version wtf !

Can someone help me... Ive uninstalled and tried the older version like i mention above and its works perfect but then i reinstall the newest and its not working again... Can i fix this or i need to switch on the older version of Opera??

Stork and KHAN fan till 2012 ...
MasterOfChaos
Profile Blog Joined April 2007
Germany2896 Posts
April 15 2010 14:15 GMT
#2
I have the same problem since on of the 10.2x versions. Since I'm too lazy to fix it, I simply use FF for youtube.
You should not use an older version permanently, since then you won't get the security fixes. Using an up-to-date browser is probably the most important thing you can do to keep your computer virus free.
LiquipediaOne eye to kill. Two eyes to live.
ihaveSC2beta
Profile Joined April 2010
Canada3 Posts
April 15 2010 14:32 GMT
#3
Just get chrome.

The exact same thing happened today and chrome updated Flash flawlessly.
zdubius
Profile Joined May 2008
Slovakia126 Posts
April 15 2010 14:40 GMT
#4
It has nothing to do with flash version, this is apparently a way of dissuading people from using browsers that block unwanted ads and pop-ups. You may try this solution to see if it helps: http://www.google.com/support/forum/p/youtube/thread?tid=46dd241356fbad51&hl=en
Flakes
Profile Blog Joined July 2008
United States3125 Posts
Last Edited: 2010-04-15 14:41:49
April 15 2010 14:41 GMT
#5
it's not the version problem afaik. Here's a workaround found on google.
copy this into notepad, save as a javascript (.js) file.

+ Show Spoiler +

// ==UserScript==
// @name youtube opera 10.51 fix
// @namespace ftf.at.ua
// @description lol, looks like opera have problems playing video from youtube. or youtube hates opera... this scripts fixes (or supposed to) this little problem
// @include http://*.youtube.com/watch*
// @run-at document-end
// ==/UserScript==
(function(){
var array_merge = function(arr1, arr2){
if((arr1 && (arr1 instanceof Array)) && (arr2 && (arr2 instanceof Array))){
for (var idx in arr2) {
arr1.push(arr2[idx]);
}
}else if((arr1 && (arr1 instanceof Object)) && (arr2 && (arr2 instanceof Object))){
for(var idx in arr2){
if(idx in arr1){
if (typeof arr1[idx] == 'object' && typeof arr2 == 'object') {
arr1[idx] = array_merge(arr1[idx], arr2[idx]);
}else{
arr1[idx] = arr2[idx];
}
}else{
arr1[idx] = arr2[idx];
}
}
}
return arr1;
}
function DO(){
var swfc=window.yt.getConfig("SWF_CONFIG");
var args=swfc.args;
var flashvars='';
for(i in args){
flashvars+=(flashvars?"&":"")+i+"="+escape(args[i]);
}
var embed=document.createElement("embed");
var attrs=array_merge({"flashvars":flashvars},swfc.attrs);
attrs=array_merge(attrs,swfc.params);
attrs.type="application/x-shockwave-flash";
attrs.src=swfc.url;
for(i in attrs){
embed.setAttribute(i,attrs[i]);
}
var div=document.getElementById("watch-player");
div.innerHTML="";
div.appendChild(embed);
}
window.addEventListener("load",DO,0);
})()


Save it somewhere, then go to youtube, right click somewhere and select edit site preferences. Go to scripting, and for User Javascript Folder choose the directory where the .js file you made is saved.

edit: beaten, with a smaller script : \
crate
Profile Blog Joined May 2009
United States2474 Posts
April 15 2010 15:11 GMT
#6
Was happening to me yesterday, I restarted my computer and it's working for me today. I dunno.
We did. You did. Yes we can. No. || http://crawl.akrasiac.org/scoring/players/crate.html || twitch.tv/crate3333
SkelA
Profile Blog Joined January 2007
Macedonia13069 Posts
April 15 2010 15:24 GMT
#7
thanks zdubius just fixed it.

Stork and KHAN fan till 2012 ...
love1another
Profile Blog Joined December 2009
United States1844 Posts
April 15 2010 16:16 GMT
#8
Yay! Teamliquid tech support
"I'm learning more and more that TL isn't the place to go for advice outside of anything you need in college. It's like you guys just make up your own fantasy world shit and post it as if you've done it." - Chill
MasterOfChaos
Profile Blog Joined April 2007
Germany2896 Posts
April 15 2010 17:18 GMT
#9
Found an easier solution on the opera website:
Just add http://s.ytimg.com/yt/jsbin/www-core-new-vfl160018.js to the AdBlocker.

1.Go to youtube
2.Right click
3.Select "Block content"
4.Select "Details"
5.Select "add"
3.Paste this -> http://s.ytimg.com/yt/jsbin/www-core-new-vfl160018.js
4.Press "Close"
5.Press "Done"
LiquipediaOne eye to kill. Two eyes to live.
Gustav_Wind
Profile Joined July 2008
United States646 Posts
April 15 2010 17:23 GMT
#10
I don't get how this is supposed to help from Google/YT's point of view though.

How are most users going to know that they're supposed to get rid of their adblocking to use youtube normally? All it says is to upgrade flash, which does nothing.
zdubius
Profile Joined May 2008
Slovakia126 Posts
April 15 2010 18:16 GMT
#11
They don't want you just to turn off your adblock, they want to make you believe that your current browser is not capable of displaying properly something as trivial as Youtube videos. And since Yotube has become so widespread that not being able to use it will be a major nuisance, most people would switch to a browser that has no problems with Youtube (and purely incidentally is produced by Google) - Chrome.
Floydian
Profile Blog Joined March 2009
United Kingdom374 Posts
April 15 2010 18:40 GMT
#12
On April 16 2010 03:16 zdubius wrote:
They don't want you just to turn off your adblock, they want to make you believe that your current browser is not capable of displaying properly something as trivial as Youtube videos. And since Yotube has become so widespread that not being able to use it will be a major nuisance, most people would switch to a browser that has no problems with Youtube (and purely incidentally is produced by Google) - Chrome.


What the...that's pretty shady business practice if it's true :/
HeadhunteR
Profile Blog Joined October 2009
Argentina1258 Posts
April 15 2010 19:32 GMT
#13
Thanks to MasterOfChaos.. yours was the best and easiest solution.. and yeah it is very shady if google was behind this we all know how people now jump from browser to browser so easily. If a problem such as this appears in a mayor website, then people just change browsers.

I only changed from chrome cause it disapeared cause of a virus..

i found out that it wasent a browser problem cause i got here and saw some embedded vods so then i started to be suspicious.

thanks for the fix
in The Kong line forever
besiger
Profile Blog Joined July 2006
Croatia2452 Posts
April 15 2010 20:54 GMT
#14
thanks for the fix, my opera went down last night, since then I was using a combo of IE and watching embeded videos and videos in the uploaders channels, for some reason those worked normally.
A weak will coupled with delusions of grandeur
FraCuS
Profile Blog Joined January 2010
United States1072 Posts
April 15 2010 21:33 GMT
#15
i had the same problem but its fine now
Apink/Girl's Day/miss A/IU/Crayon Pop/Sistar/Exo K :D l Kpop and Kdrama Enthusiast
XinRan
Profile Blog Joined August 2008
United States530 Posts
April 15 2010 23:20 GMT
#16
While we're on the topic of problems with Opera, does anyone find that GMail runs really slow on Opera?
"To be fair, Kal played like absolute garbage. His noted inconsistency and bad record versus Jaedong high fived into a cacophony of suck." - TwoToneTerran
semantics
Profile Blog Joined November 2009
10040 Posts
April 15 2010 23:45 GMT
#17
On April 16 2010 03:40 Floydian wrote:
Show nested quote +
On April 16 2010 03:16 zdubius wrote:
They don't want you just to turn off your adblock, they want to make you believe that your current browser is not capable of displaying properly something as trivial as Youtube videos. And since Yotube has become so widespread that not being able to use it will be a major nuisance, most people would switch to a browser that has no problems with Youtube (and purely incidentally is produced by Google) - Chrome.


What the...that's pretty shady business practice if it's true :/

just remember their slogan "don't be evil" i soff at that when they are the largest multimedia crop in the world
Please log in or register to reply.
Live Events Refresh
Next event in 27m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 268
ProTech133
StarCraft: Brood War
Britney 29631
Rain 7765
Horang2 3200
Jaedong 1946
Rush 230
Light 202
hero 179
Killer 101
ToSsGirL 76
Sea.KH 32
[ Show more ]
Hm[arnc] 26
[sc1f]eonzerg 23
Terrorterran 12
Noble 10
Icarus 1
Dota 2
Fuzer 160
NeuroSwarm82
canceldota49
Counter-Strike
olofmeister2057
zeus947
allub276
x6flipin266
edward110
Super Smash Bros
Mew2King121
Other Games
Liquid`RaSZi998
B2W.Neo663
XaKoH 283
crisheroes173
Organizations
Counter-Strike
PGL1010
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt952
Upcoming Events
WardiTV Winter Champion…
27m
Replay Cast
21h 27m
CasterMuse Showmatch
21h 27m
Light vs Queen
WardiTV Winter Champion…
1d
The PondCast
1d 22h
Replay Cast
2 days
Korean StarCraft League
3 days
CranKy Ducklings
3 days
SC Evo Complete
4 days
Replay Cast
4 days
[ Show More ]
Sparkling Tuna Cup
4 days
uThermal 2v2 Circuit
5 days
Replay Cast
5 days
Wardi Open
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-02-22
LiuLi Cup: 2025 Grand Finals
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Acropolis #4 - TS5
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
PiG Sty Festival 7.0
Nations Cup 2026
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025

Upcoming

[S:21] ASL SEASON OPEN 2nd Round
[S:21] ASL SEASON OPEN 2nd Round Qualifier
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.