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.
IO Error during file uploading
  • Hi
    I am implementing multiple file uploading in MVC4 application using documentation provided on uploadify site.
    I have implemented code as per follows :








    $(document).ready(function () {

    $('#file_upload').uploadify({
    'swf': '/uploadify/uploadify.swf',
    'uploader': '/uploadify/uploadify.swf',
    'script': '@Url.Action("Upload", "Home")',
    'cancelImg': '/uploadify/uploadify-cancel.png',
    'folder': '/uploads',
    'scriptAccess': 'always',
    'fileExt': '*.png;*.jpg;*.jpeg;*.gif',
    'sizeLimit': '4194304', // 4 MB
    'multi': true,
    'auto': true,
    'onError': function (event, ID, fileObj, errorObj) {
    if (errorObj && errorObj.type == 'File Size') {
    alert('Max file upload size is 4MB');
    return;
    }
    alert(errorObj.type + ' Error: ' + errorObj.info);
    },
    'onComplete': function (event, ID, fileObj, errorObj) {
    window.location = window.location.href;
    }
    });
    });



    Select some files to upload:








    and in HomeController.cs added Upload method as

    [HttpPost]
    public ActionResult Upload(HttpPostedFileBase fileData)
    {

    if (fileData != null && fileData.ContentLength > 0)
    {
    var fileName = Server.MapPath("~/uploads/" + Path.GetFileName(fileData.FileName));
    fileData.SaveAs(fileName);
    return Json(true);
    }

    return Json(false);
    }

    After build and run the site on ie8 and firefox
    during file uploading I am getting IO Error.
    Please suggest me how to solve this IO Error.