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.
folder parameter in v 3.1.1
  • In older version I used folder parameter and in uploader ashx script i use string tempPath = context.Request.QueryString["folder"]; to get folder to upload.
    In version 3.1.1 this parameter doesnt works. How can I set and get upload folder in version 3.1.1?
  • $(function() {
    $("#file_upload").uploadify({
    'formData' : {'someKey' : 'someValue', 'someOtherKey' : 1},
    'swf' : '/uploadify/uploadify.swf',
    'uploader' : '/uploadify/uploadify.php',
    'onUploadStart' : function(file) {
    $("#file_upload").uploadify("settings", "someOtherKey", 2);
    }
    });
    });
    http://www.uploadify.com/documentation/uploadify/formdata/
  • I also having he same question. How can I get the value on uploader ashx file ?
    I was try this, but doesn't work. string query1 = context.Request.QueryString["ID"].ToString();

    It must be something wrong on my code, but I am sure what is it.

    Please help us. Thanks
  • I have got the value using this code string sdfasf = context.Request["ID"];
    it look easy but it was quite hard to me.

    Thanks anyone who matched this.