1

(112 replies, posted in News)

Plupload2 is not working on IE8 without flash (html4 on IE8).  I just downloaded the latest build and still not working.  When I switch the plupload script file to 1.5.7 it is working on IE8 with html4.  I'm not getting any errors, it just fails to initialize.  The PostInit event never fires.

I was having the same problem with plupload2 not working on IE8 without flash but version 1.5.7 seems to work fine.
Try this example page from IE8 (if it prompts you to install flash, press do not install and it should work with html4): http://www.plupload.com/example_events.php
It is the only example that has html4 enabled.

Incase anyone else is having a problem with PostInit, the above examples may have worked in the past but do not anymore.  It appears that PostInit must be in the preinit section and will not work in init.  This doesn't seem to be documented anywhere.  (I am using Plupload2)

$("#plupload_container").pluploadQueue({
    runtimes: 'html5,flash',
    flash_swf_url: '../plupload/js/plupload.flash.swf',
    silverlight_xap_url: '../plupload/js/plupload.silverlight.xap',
    filters: [
        { title: "Image files", extensions: "jpg,gif,png" },
        { title: "Zip files", extensions: "zip" },
        { title: "Document files", extensions: "doc,pdf,txt" }
    ],
    url: 'Upload.ashx',
    chunk_size: '10mb',

    preinit: {
        PostInit: function () { alert("init"); }
   },
   init: {
   
   }
});