0
votes

I have an unusual problem which apear when I moved my files to another hosting (in old one was everything ok).

I have main flash site and swf loaded into it. My main flash can read and parse xml's, but swf loaded into main flash can't read any xml.

I'm 100% sure that path to xml is correct. I can send information to PHP file to save some data in xml and this data is stored in xml. I can get informations from PHP, but I can't get any xml data... It looks like server side problem.

Is there anything what I could overlooked?


EDIT

I have found the problem. When I moved files to another server, there was a .htaccess file with lines:

<FilesMatch ".*xml">
  Order allow,deny
</FilesMatch>

In old hosting, all code in this file is commented (I don't know what does it depend on). Anyway.

1
from where are you getting this xml? Is this XML all in memory?Aditya Kumar Pandey
All the files are stored in one server, on one domain.Artur Filipiak

1 Answers

0
votes

Check that the domain where the XML is hosted has an appropriate crossdomain.xml file. Also have a look at System.security.allowDomain and try allowing the domain in either the parent or children SWF (or both).

Without any error message, it's difficult to provide more help.