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

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.