According to the Uploadify documentation, settings can be set using:
$('#file_upload').uploadify('settings','formData', { 'myfield': 'myvalue' });
However, when I use this I get the error Uncaught Call to SetPostParams failed
I have also tried:
$('#file_upload').uploadify('settings','postData', { 'myfield': 'myvalue' });
which interestingly enough, succeeds but does not actually post any data with the upload.
I beleive the OLD way of doing it was:
$('#file_upload').uploadifySettings('formData', { 'myfield': 'myvalue' });
but this call simply throws an error that the object does not have an uploadifySettings method.
Please help!