I know this problem has been asked ad nauseam; however, it would appear I'm stuck. I have created a file-uploader in Flash which has been successfully tested on a local machine. However, when moving it to the production server and trying to access it from another machine, the php isn't being called. Initially there were security exceptions being thrown but they've been resolved after creating the crossdomain.xml file.
I've placed some logging in the php file to see if it's called and no dice. It's called if run locally but like I said, cross-domain not so much.
My crossdomain.xml file looks like this as follows.
<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
Is there something else I need to do in the configuration of either the Flash or on the server?