crossdomain.xml wont work on my webhost

It is ok on my localhost with the address localhost/crossdomain.xml
but when i uploaded it on my webhost, i placed it inside the public_folder which is the root folder in my web host so it looks like huddreth.uphero.com/crossdomain.xml
it always says “Rejected because no crossdomain.xml policy file was found”

Any Idea how to solve this? Thanks

…sorry for my bad english

Setting the crossdomain policy can be a bit hard. I suggest you to read those explanations because the solution can be dependent to you platform.

Here are some explanations.

Unity Crossdomain

UniWeb Crossdomain

Hope that you’ll find an answer.

Thanks for the concern Matt.
I already solved the problem.
The error for “Rejected because no crossdomain.xml policy file was found” which happened because I deleted the crossdomain.xml at my localhost after i uploaded it in the web, then i tried to put again the crossdomain.xml at my localhost to work for the error. Then I played the game without editing the url scripts of the www class
and it works. So I tried to check all of my scripts to find where is the code that connects the localhost that prevents me to connect at the webhost but i cant find it. I also try to build the project again but it came up with the same problem.

I lately noticed whatever url i placed at the varibale named URL, it always load the localhost url.

this code
var URL = “http://huddreth.uphero.com/unity/retriever.php”;
var w = WWW(URL, form);

and this

var w = WWW(“http://huddreth.uphero.com/unity/retriever.php”, form); (this code works)

I dont know whats wrong with my var URL.

By the way retriever.php gets may data from my database and send it to unity.

I dont know whats wrong with the code on top, It is always loading the localhost,this was my big problem in the past few days.