This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
Uploadify and crossdomain
  • Hello,
    My The HTML and javascript resides on domain A, and flash uploadify.swf reside on domain B.
    Also,
    My embed tag has allowscriptaccess='always', and I have place required cross-domain files on both server

    Now, when I trying to upload files with above setting I am getting following action-script error.
    "exception: Error in Actionscript. Use a try/catch block to find error."

    Note: I am able to upload files when all these files are located on the same domain as the SWF.
  • Hello, you need a crossdomain.xml file in the root directory of the application server that receives the upload (where you put the .php file). Also make sure you use full paths in the Uploadify JavaScript configuration.

    This is an example:

    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"&gt;
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="master-only" />
    <allow-access-from domain="*.example.com" />
    <allow-access-from domain="example.com" />
    </cross-domain-policy>


    You can read more about these files here: http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
  • Hello,
    I want to know there are limit on the file size when upload the file crossdomian.
    I can upload file whatever size when using the same domain, but smaller than 30000000byte when crossdomain.
    Is there any limit on the size of using flash transfer file crossdomain?