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.
A page has multiple controls can not upload
  • IE6 OK firefox error

    $('#file_upload').uploadifyUpload();
    $('#first_upload').uploadifyUpload();



    <div title="first" style="padding:10px;">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><div id="firstQueue"></div></td>
    <td rowspan="2"><div id="imageshow"><img name="" src="<?php print $first_image ?>" width="234" height="195" alt="<?php print $dir . $china_id . '.jpg' ?>"></div></td>
    </tr>
    <tr>
    <td align="center"><input name="first_upload" type="file" id="first_upload" size="6"></td>
    </tr>
    </table>

    </div>

    <div title="two" style="padding:10px;">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><div id="fileQueue"></div></td>
    <td><img name="" id="image_list_show" src="/uploads/0000000005/00000085/00000085.jpg" width="234" height="195" alt=""></td>
    </tr>
    <tr>
    <td align="center"><input name="file_upload" type="file" id="file_upload" size="6"></td>
    <td align="center">
    <select name="image_list" id="image_list" editable="false" class="easyui-combobox" url="image_list_action.php?action=select&china_id=<?php print $china_id ?>"> </select>
    <a href="#" class="easyui-linkbutton" plain="true" iconCls="icon-remove" onclick="delimage()">删除</a>
    </td>
    </tr>
    </table>

    </div>




    $('#file_upload').uploadify({
    'uploader' : '/shopmanage/public/js/uploadify/uploadify.swf',
    'script' : '/shopmanage/public/js/uploadify/uploadify.php',
    'scriptData': { 'session': '<?php echo session_id(); ?>'},
    'cancelImg' : '/shopmanage/public/js/uploadify/cancel.png',
    'folder' : '/uploads',
    'buttonImg' : '/shopmanage/public/js/uploadify/selectshow.jpg',
    'width' : 116,
    'height' : 26,
    'queueSizeLimit' : 5,
    'fileDesc' : 'select',
    'fileExt' : '*.jpg;*.gif;*.png',
    'sizeLimit' : 150000,
    'simUploadLimit' : 5,
    'queueID' : 'fileQueue',
    'auto' : false,
    'multi' : true
    });



    $('#first_upload').uploadify({
    'uploader' : '/shopmanage/public/js/uploadify/uploadf.swf',
    'script' : '/shopmanage/public/js/uploadify/uploadfirst.php',
    'scriptData': { 'session': '<?php echo session_id(); ?>'},
    'cancelImg' : '/shopmanage/public/js/uploadify/cancel.png',
    'folder' : '/uploads',
    'fileDataName' : 'Firstdata',
    'buttonImg' : '/shopmanage/public/js/uploadify/selectlist.jpg',
    'width' : 116,
    'height' : 26,
    'queueSizeLimit' : 1,
    'fileDesc' : 'select',
    'fileExt' : '*.jpg;*.gif;*.png',
    'sizeLimit' : 150000,
    'simUploadLimit' : 1,
    'queueID' : 'firstQueue',
    'auto' : false,
    'multi' : true
    });