Howdy, Stranger!

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

scriptData incomplete on upload
  • Something odd seems to be happening to the scriptData. The first pair seems to be lost, or perhaps over-written.

    Windows 7, IIS, Uploadify 2.1

    Here's a snippet of my JavaScript. Note the four items in the scriptData list:


    jQuery(\"#dnn_ctr378_Upload_upPhotos\").uploadify({
    'uploader' : 'uploader.swf',
    'script' : 'UploadHandler.ashx',
    'multi' : true,
    'auto' : true,
    'folder' : '/Gallery/6',
    'scriptData':{'z':'1','m':'378','a':'6','u':'1'}
    });
    </script>


    Now here's a screenshot of what gets received in the QueryString on the server:

    image

    Notice that the first item in the scriptData list ( z = 1 ) is missing! The other three items are there, but not the first.

    Is anyone else having this problem?

    Thanks in advance.

    - Bryan
  • My bad. I upgraded from an older version to 2.1, and forgot to change part of the JavaScript.

    'uploader'  : 'uploader.swf',


    should be

    'uploader'  : 'uploadify.swf',


    with that changed, it works.