Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Back-end script url CANNOT contain more than one( 1 ) "URL parameter" ( aka query string param )
  • In my case I needed to pass more than one query string parameter( aka GET-parameter ) to the upload script at the server. However this is not working...

    $( selector ).uploadify({
    ...
    'script' : 'somepath/somefile.extension?param1=value1&param2=value2&...&paramN=valueN',
    ...
    });


    I spent hours on debugging this and what I found was that it allways called the script like it was 'somepath/somefile.extension?param1=value1'. Why does uploadify strip query string parameters ( aka GET-parameters ) if there is more than one ? ( something to do with '&' character ? I tried using & but it didnt work either )
  • AT LAST!!

    I have been hunting around for hours trying to find a reason as to why it wouldnt work.

    Like you my script had query string and you are right it strips them off!!

    I ended up having to send the parameters in the scriptData and worked straight away...