“Error #2032: Stream Error” when loading a remote content

Your crossdomain.xml is statingthat only requests form your own domain are permitted (and you don’t need a crossdomain.xml to read from your own domain anyways).

So if you are trying to test it locally by loading content from your server it won’t work. Although I believe you should get a security sandbox violation error in this case.

And the HTTP Status you are getting says 406 (“Not acceptable”). So you might change your crossdomain so it allows requests from other domains or check your server settings if there is anything special regarding PHP files.

For the starts, test this as your crossdomain.xml:

<?xml version="1.0" ?>
<cross-domain-policy>
   <allow-access-from domain="*" />
</cross-domain-policy>

Note that this allows any domain to send requests to your server and this is a serious security risk. This is fine for testing, but you should specify explicit domains here for the production system

Leave a Comment