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.
Upload button does nothing in IE9
  • Hi, Uploadify!

    I have implemented the latest version of your tool in an MVC3-based website.

    Here's the content page code:\
    @{
    ViewBag.Title = "Home Page";
    }

    @section Head
    {
    <link href="@Url.Content("~/Uploadify/uploadify.css")" rel="stylesheet" type="text/css" />
    <script src="@Url.Content("~/Uploadify/jquery.uploadify-3.1.js")" type="text/javascript"></script>
    <script type="text/javascript">
    $(function() {
    $('#file_upload').uploadify({
    'swf': '@Url.Content("~/Uploadify/uploadify.swf")',
    'uploader': '@Url.Action("Upload")',
    'folder': '@Url.Content("~/Content/UploadedFiles")',
    'cancelImg': '@Url.Content("~/Uploadify/uploadify-cancel.png")',
    'multi': false,
    'buttonText': 'Browse',
    'onUploadError': function (file, errorCode, errorMsg, errorString) {
    alert('The file ' + file.name + ' could not be uploaded: ' + errorString);
    }
    });
    });
    </script>
    }

    <input type="file" name="file_upload" id="file_upload" />


    [HttpPost]
    public ActionResult Upload(HttpPostedFileBase FileData)
    {
    // Notice the argument of the MapPath method:
    var fileDirectory = Server.MapPath(@"~/Content/UploadedFiles/");

    FileData.SaveAs(fileDirectory + FileData.FileName);

    return View("Index");
    }


    Everything works as expected in Firefox and in Chrome, but not in IE9.

    Clicking the button in IE9 does absolutely nothing. Also, the gradient image is not applied properly to it, as well.

    How do I go about resolving these issues?

    Thanks,
    Denis.
  • I am also having the same problem when I went from version 2 to 3. Any suggestions?
  • Same problem here , obviously theres a fix, because the demos here work in IE9 - please someone find the answer!
  • Me too.I try to solve this problem, but no result. Uploadify is a great tool, please fix this bug, make it perfect. Thanks.
  • The select button doesn't work for me in IE9... if i change my Browser Mode: to IE8 it works... or if i change the Document Mode: to IE8 it works too
  • For IE9, This plugin doesn't work in web server of VS2010 ,but it's no problem when you run it in the IIS configuration site.
    As for the deep reason. I don't know...