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.
  • Hi, why when i put DOCTYPE in my page don't work uploadify script with IE.
    Why? How fix?

    Thanks
    <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
    <html>
    <head>
    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />
    <title>Uploadify scriptData Sample</title>
    <link rel=\"stylesheet\" href=\"test/uploadify/uploadify.css\" type=\"text/css\" />
    <script type=\"text/javascript\" src=\"test/js/jquery-1.3.2.min.js\"></script>
    <script type=\"text/javascript\" src=\"test/js/jquery.uploadify.js\"></script>
    <script type=\"text/javascript\">
    $(document).ready(function() {
    $(\"#fileUpload3\").fileUpload({
    'uploader': 'test/uploadify/uploader.swf',
    'cancelImg': 'test/uploadify/cancel.png',
    'script': 'test/uploadify/upload.php',
    'folder': 'test/files',
    'multi': true,
    'buttonText': 'Select Files',
    'simUploadLimit': 2
    });
    });
    </script>
    </head>
    <body>
    <a href=\"javascript:$('#fileUpload3').fileUploadStart()\">Start Upload</a>
    </body>
    </html>