LoadVars Woes
I have a problem with LoadVars when i execute the code from my server it works fine but when i upload it to the clients server then loadVars stops functioning.....here is my code. Anybody have any ideas why its not working?
application.allowDebug = true;
application.onAppStart = function()
{
}
application.onConnect = function(client) {
trace("fired");
trace("fired");
trace("fired");
this.acceptConnection(client);
sv0=new LoadVars();
sv0.filename ="test";
sv0.onLoad = function(){
trace(sv0.success);
};
sv0.sendAndLoad("http://privatechatnow.com/SampleASP/1e.aspx", sv0, "POST");
}
