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 + Safari 5 doesn´t work
  • Hello!

    Unfortunately i noticed that Uploadify doesn´t work with the new Safari 5. Does this only happen on my machine?

    Best,
    Jon.
  • Tested on Safari 5 and all works perfectly.
  • Just to add to this topic (it seems like a better thing to do than creating a whole new one)

    Safari 5.0.2 and uploadify don't get along for large files (1.5gb or more). The exact same file/webpage work fine using firefox.
    This bug is something I can 100% replicate, and I'm happy to run any tests (or show you the page to experiment with yourself).

    Let me know if I can be of help debugging :)
  • I have the same issue with a 46.92Kb jpg. While on another page using "virtually" the same code I can upload a 1.3 Meg PDF. Link shows up I can pick the file but whenI click upload files nothing happens

    Below is the view Source of the page





    $(function () {
    $("#artwork-upload").uploadify({
    'uploader' : '/UnitedGraphics-FastSites/scripts/uploadify/uploadify.swf',
    'script' : '/UnitedGraphics-FastSites/ArtworkUpload.ashx',
    'cancelImg' : '/UnitedGraphics-FastSites/scripts/uploadify/cancel.png',
    'multi' : false,
    'removeCompleted' : false,
    'scriptData': { 'jobId': '250790fd-471c-4f44-8703-b966cdd51b3e' },
    'fileDesc' : 'Artwork Files (*.jpg;*.tif;*.pdf;*.eps)',
    'fileExt' : '*.jpg;*.tif;*.pdf;*.eps',
    'queueSizeLimit' : 1,
    'onAllComplete' : function(event, data) { /* TODO: Check that the upload was successful */
    if(data.errors > 0) {
    alert("There were some errors when uploading your files.");
    } else {
    $("#upload-link").hide();
    $("#files-uploaded").css("display", "block");
    }
    },
    'onCancel' : function(event, id, file, data) {
    $.get('/UnitedGraphics-FastSites/artwork/cancel/250790fd-471c-4f44-8703-b966cdd51b3e' + '/' + escape(file.fileName)); //TODO: This is terrible.
    },
    'onError' : function(event, id, file, error) {
    alert(error+" uploading file " + file.fileName);
    }
    });

    $("#upload-link").click(function() {
    $("#artwork-upload").uploadifyUpload();
    return false; /* don't refresh page */
    });
    });


  • The user and all related content has been deleted.