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.
can't I insert datain upload script?
  • there is more script in my upload.php besides upload, and something weird

    for example, I can't get session
    I try to catch my user id in the script

    session_start();
    $id = $_SESSION['id'];
    echo $id;


    if I execute upload.php itself, the id show successfully
    but if I use uploadify

    onComplete: function(a, b, c, d, e) {
    console.log(d);
    }

    it can't catch the session id, why?