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 doesn't work
  • I have the following in my aspx page:

    <head runat="server">
    <title>Untitled Page</title>
    <link href="uploadify/uploadify.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript" src="uploadify/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="uploadify/swfobject.js"></script>
    <script type="text/javascript" src="uploadify/jquery.uploadify.v2.1.4.min.js"></script>

    <script type="text/javascript">
    $(document).ready(function() {
    $('#file_upload').uploadify({
    'uploader' : 'uploadify/uploadify.swf',
    'script' : 'uploadify/uploadify.php',
    'cancelImg' : 'uploadify/cancel.png',
    'folder' : 'D:/IDataRawFiles/upload_temp',
    'auto' : true
    });
    });
    </script>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <input id="file_upload" name="file_upload" type="file" />
    <asp:Button ID="btnUpload" runat="server" Text="Upload" OnClick="btnUpload_Click" ></asp:Button>

    </div>
    </form>
    </body>
    </html>

    And the .aspx.cs file has:

    protected void btnUpload_Click(object sender, EventArgs e)
    {
    for (int i = 0; i < Request.Files.Count; i++)
    {
    HttpPostedFile file = Request.Files[i];
    file.SaveAs(@"D:\IDataRawFiles\upload_temp\" + file.FileName);
    }
    }


    But when I click on Browse - 1) I can NOT select multiple files. 2) And the single file I select doesn't get uploaded in the location specified. I think the jQuery function has the 'folder' attribute specified and looks like it should magically(?) upload the file in the folder. Yet - I tried the btnUpload button click and doesn't work either. I get a 'object expected' script error from the browser when I try to upload.

    What am I missing?

    Thanks.

    nhuda