Hi all,

I have created a website and placed it in my domain. But i am getting following 2 errors "550/crossddomain.xml no such file or directory" and
" Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: ftp://solves@ftp.smartyhost.com.au/public/www/cu3er.swf cannot
load data from config.xml?t=1275979253767.

at Main/::frame2Action()"

Please help me resolve these errors.

Do I need a crossdomain. xml file. If yes then what should be the content of that and where should it be placed.

Thanks....

Recommended Answers

All 2 Replies

I don't really play with flash, but it sounds like that Shockwave file is trying to access data on another domain. The crossdomain.xml file can possibly take care of this, (uploaded into your root directory) which it doesn't appear you have one.

Give these links a read, should help out.

http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html

http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html

Member Avatar for rajarajan2017

Don't worry create a crossDomain.xml in your root directory and give your accessible domain name with their parameters.


1. Create a xml file with the name crossDomain.xml

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

Sample 2:

<?xml version="1.0" ?> 
<cross-domain-policy> 
  <site-control permitted-cross-domain-policies="master-only"/> 
  <allow-access-from domain="*"/> 
  <allow-http-request-headers-from domain="*" headers="*"/> 
</cross-domain-policy>

2. Paste the crossDomain.xml in your root folder of your website

I hope it will work now!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.