Hi, I have a file upload script to upload pictures to a server. It has been working fine in all browsers but when I upgraded the flash player to 10.1 in firefox 3.6.6 yesterday it stop working. I retested with another computer and as soon as i installed the flash player 10.1 it stopped working. I did some debbuging and noticed that the error return from the FileReference listener is I/O error. It doesnt make sense because the file is in the server and it works fine in all other browsers. I changed allowScriptAccess from "samedoamin" to "always" without luck. I also used absolute path in the upload url. When I run it in my local development environment it works but it doesnt work in the production server. I have changed the security settings of the folders in the server to 777 and still doesnt work either. What can it be? any ideas? it works perfect in other flash player versions. the HTML that embeds the movie: &ga=&sid=" /> &ga=&&sid=" quality="high" bgcolor="#ffffff" width="550" height="300" name="test" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
SWF: var item:FileReference; //... //some code and processing of vars needed in the php script to store in the DB //... item.upload("upload.php?sid="+sid+"&id="+uid+"&ga="+ga+"&seq="+ sequence);