Seem to be a lot of people asking on the forum but not much in terms of response..
formData is not getting sent when a user uploads. I've tried a bunch of different ways mentioned of setting it but the only way that works is setting it on the creation of the object. Setting it at any other time leads to it not getting sent which is not ideal as I depend on the form data to deal with my uploads.
I've tried this:
'onUploadStart' : function(file) {
var formData = { 'key' : 'value, 'otherkey' : 'otherval' }
$('#file_upload').uploadify("settings", "formData", formData);
},
as well as this:
'onUploadStart' : function(file) {
$('#uploadify').uploadify('settings', 'key' , 'val' );
$('#uploadify').uploadify('settings', 'otherkey' , 'otherval' );
},
I've used to two above samples in other places and not just onUploadStart as well to see if that would help which it did not.
November 2012