I was playing around with flowplayer for a project. While playing with some demos i came across an error.
I was clicking a link and expecting for flowplayer to load some video stream and i noticed in firebug Net tab that a 404 error appeared about crossdomain.xml file not being found!
Solution:
In a few words after some time i found out that this was caused because while playing with demo code from the flowplayer site i forgot to change the flowplayer’s url in my own domain:
From:
$f("a.player", "http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf", { ...
changed to:
$f("a.player", "http://mydomain/flowplayer-3.2.5.swf", { ...
That fixed it!