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.
Plupload Forum
Search options
Plupload Forum → Posts by matt
Pages 1
Posts found: 3
2 2013-06-21 03:32:37
Re: File select does not show in IE and HTML 4 runtime (7 replies, posted in General discussion)
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.
3 2013-06-21 02:42:42
Re: PostInit event does not fire in Firefox with HTML5 runtime (12 replies, posted in Queue Widget)
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: {
}
});
Posts found: 3
Pages 1
Plupload Forum → Posts by matt
You are not logged in. Please login or register.
Powered by PunBB, supported by Informer Technologies, Inc.
The pun_repository official extension is installed. Copyright © 2003–2009 PunBB.
Generated in 0.095 seconds (87% PHP - 13% DB) with 6 queries