This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
GET no data in upload.php (scriptData)
  • hello

    the upload works perfect!
    what i need are some variables to write in my DB.
    i use the scriptData (also downloaded the scriptData-Example)... but i never GET my Variable (my_ID) in the upload.php?
    i wondering if its because i use "auto-Upload"? or do i need some additions to my script?

    here my script:

    $(document).ready(function() {
    $('#flvloader').fileUpload({
    'uploader': '../../uploader/uploader.swf',
    'script': '../../uploader/upload.php',
    'folder': '<?php echo (\"../../../data\"/\".$colname_Artikel);?>',
    'cancelImg': '../../uploader/cancel.png' ,
    'buttonText': 'choose your file',

    'wmode':'transparent',
    'scriptData': {\"my_ID\":\"<?php echo $colname_Artikel;?>\"},
    'auto':true,
    });
    });

  • you have a syntax error. Remove the last comma next to auto: true, and it should work fine.
  • ahhh shit you are right!
    (this happen when you work for hours, you loose the look for the small details)

    its working now perfect!
    thanks

    ps:was looking long time for something like this, uploadify is perfect :D
    THANKS