My problem is that the file-uploader http://valums.com/ajax-upload/ adds params to the URL instead of passing them by POST.

For example:

action:'/upload.php'
params : { x1:'x1'}

... will submit as the URL:

/upload.php?x1=x1

(GET), but I need to pass additional params by POST. Is this possible?

link|improve this question

I had a quick look at the source and I think that the library only supports parameters as query string. It shouldn't be too difficult to implement the functionality you want though. Maybe a fork already does what you want… – polarblau Feb 28 '11 at 18:25
is it cross-domain ajax? – kjy112 Feb 28 '11 at 21:06
i guess it will be hard for me to make changes, also it's not cross-domain – kusanagi Mar 1 '11 at 8:37
@kusanagi the ajax-upload supports POST, but i am assuming you are using the file-uploader this link might help you github.com/valums/file-uploader/issues#issue/57 – kjy112 Mar 1 '11 at 15:04
why do you need to pass the parameter by POST? – Curlas Mar 4 '11 at 9:20
show 1 more comment
feedback

1 Answer

I think you're using an old version of ajax-upload. I found this new one.

Here's an example of it working OK with a data attribute properly converted to hidden input fields: http://jsfiddle.net/marcosfromero/XkCP5/

var button = $('#button1'), interval;
new AjaxUpload(button,{
    //action: 'upload-test.php', // I disabled uploads in this example for security reasons
    action: 'upload.htm', 
--> data: {field1: 'value1', field2: 'value2'}, <--
    ...

I stopped the submission of the file and got this automatically created form:

<form enctype="multipart/form-data" method="post" style="display: none;" action="upload.htm" target="ValumsAjaxUpload0">
    <input type="hidden" name="field1" value="value1">
    <input type="hidden" name="field2" value="value2">
    <input type="file" name="myfile" style="position: absolute; margin: -5px 0pt 0pt -175px; padding: 0pt; width: 220px; height: 30px; font-size: 14px; opacity: 0; cursor: pointer; display: block; z-index: 2147483583; top: 48px; left: 147px;">
</form>
link|improve this answer
this is actually an older version from 2009 and has no progressbar – XzenTorXz Aug 30 '11 at 11:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.