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.
v.3 - Select files not working
  • Hi.
    I implemented the version 2 of uploadify in one application with good success. I'm having now quite a lot of trouble with that. It still works pretty well with very small file (less that 40 KB) but, from my new Windows 7 laptop, it crushes all the browsers for bigger files (it jams for 2 minutes, then the browser crush).
    I have the same problems with the demo on this web site.
    So I decided to give a go to v. 3, considering that the demo on the swfUpload upload site works very well.
    The problem I have is that the button "Select files" doesn't open the list of the "Computer files", making all the rest superfluous...
    Here is my implementation:

    function activateLoader(cart){
    $("#uploadify").uploadify({
    swf : 'allegati/uploadify.swf',
    uploader: 'allegati/uploadFile.asp?cart=' + cart,
    checkExisting: 'allegati/enclosures.asp?task=checkexists',
    cancelImg: 'img/cancel.png',
    buttonText : 'Upload File',
    height : 30,
    queueID : 'fileQueue',
    auto : true,
    onUploadComplete: function () {
    $("#listFiles").load('allegati/enclosures.asp?task=showfiles&cart=' + cart);
    $("#listFlatFiles").load('allegati/enclosures.asp?task=showflatfiles&cart=' + cart );
    return true},
    onSelect : function(){$("#fileQueue").fadeIn(100)},
    multi : false
    });
    }


    The "interesting" thing is that when I apply the function, the Chrome developer tool shows me an error:
    The object "uploadify.swf?preventswfcaching=1303808880651" is invoked, and it requests an URL that doesn't exist... "false"
    Can someone tell me if there is anything wrong with the configuration?
    Thanks!
  • I am having the same problem. Below picked up from 'firebug'
    "NetworkError: 404 Not Found - http://localhost:12719/OnlinePortal/uploadify.swf?preventswfcaching=1321451524925"
    upload...1524925
    "NetworkError: 404 Not Found - http://localhost:12719/OnlinePortal/uploadify.swf?preventswfcaching=1321451527206"
    upload...1527206
    "NetworkError: 404 Not Found - http://localhost:12719/OnlinePortal/uploadify.swf?preventswfcaching=1321451528099"

    --CODE BELOW--

    $(document).ready(function () {

    $("#<%=loadThem.ClientID %>").uploadify({
    'uploader': 'Scripts/fileUpload/today/uploadify.swf',
    'cancelImg': 'images/new_fileUpload/cancel.png',
    'buttonText': 'Browse Files',
    'script': 'WebService/Upload.ashx',
    'fileDesc': 'All Files',
    'fileExt': '*.jpg;*.jpeg;*.gif;*.png;*.pdf',
    'displayData': 'percentage',
    'removeCompleted': true,
    'multi': true,
    'auto': false,
    'removeCompleted' : true,
    'onComplete' : function(event, ID, fileObj, response, data) {
    alert('There are ' + data.fileCount + ' files remaining in the queue.');
    }
    });

    });

    -- FORM --



    ').uploadifyUpload();">Upload Files

    ').uploadifyClearQueue()">Clear