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.
Problem uploading files
  • I just implemented Uploadify on a site that I am making for somebody, and I am having a problem uploading files. When I select any file and click Open, an alert box pops up saying "Some files were not added to the queue: ". Here's a screen cast to show you what's happening: http://screencast.com/t/ZCvcIp6L

    The jQuery for it is:

    $("#admin-upload-images").uploadify({
    auto: true,
    height: 23,
    swf: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.swf',
    uploader: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.php',
    width: 96,
    buttonClass: 'btn btn-inverse',
    buttonCursor: 'pointer',
    buttonText: 'Select Images',
    fileTypeExts: 'png, jpg, gif, jpeg',
    formData: { },
    onUploadSuccess: function(file, data, response) {
    alert('File '+file.name+' was uploaded!');
    },
    fileLimit: 100,
    fileSizeLimit: '100000KB'
    });


    Thanks in advance!
  • It also still doesn't work when there aren't any limits set:

    $("#admin-upload-images").uploadify({
    auto: true,
    height: 23,
    swf: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.swf',
    uploader: SM.Config.get('RootDir') + 'assets/uploadify/uploadify.php',
    width: 96,
    buttonClass: 'btn btn-inverse',
    buttonCursor: 'pointer',
    buttonText: 'Select Images',
    fileTypeExts: 'png, jpg, gif, jpeg',
    formData: { },
    onUploadSuccess: function(file, data, response) {
    alert('File '+file.name+' was uploaded!');
    }
    });


  • Never mind, I fixed it, the problem was with the fileTypeExts option in the JS.

    I am having another problem though.

    The problem is that I don't see where it is uploading to, even though I have the folder set correctly in uploadify.php and check-exists.php.

    Any ideas? Thanks!