101

Re: Plupload 2 Beta

Where does it show html5 in ie7?

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: Plupload 2 Beta

Hi Davit please take a look at this:

that.uploader = new plupload.Uploader(
                {
                    runtimes: 'html5,silverlight'
                    ,
                    browse_button: that.$browseButton[0]
                    ,
                    container: $element.attr("id")
                    ,
                    drop_element: that.$dropZoneElement[0]
                    ,
                    chunk_size: '1mb'
                    ,
                    max_file_size: '2gb'
                    ,
                    multipart: true
                    ,
                    multipart_params: {
                        "path" : this.options.path.join("\\")
                    }
                    ,
                    url: this.options.url
                    ,
                    flash_swf_url: that.jsFileLocation + 'Moxie.swf'
                    ,
                    silverlight_xap_url: that.jsFileLocation + 'Moxie.xap'
                });
           
            that.uploader.bind('Init', function (up, params) {
                alert(params.runtime); <-- HERE IT SHOWS  HTML5
                ...

Furthermore when I type this url:

http://jsfiddle.net/gh/get/jquery/1.9.1 … re/bundled

to IE10 I can't upload anything, I see Your browser doesn't have Flash, Silverlight or HTML5 support. message which is nonsense.

Thanks a lot for advance.

103

Re: Plupload 2 Beta

Simply tell it to launch the js onLoad from the options sidebar.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

104 (edited by jendaneu 2013-09-27 12:50:10)

Re: Plupload 2 Beta

True I am sorry - my fault. But still I don't know answer to ie7 HTML5 issue. I run ie7 only via simulating it in ie10 browser by pressing F12 and setting ie7 there but I guess it still should not tell me I use HTML5. I need for ie7-9 chunking and this works as I want, but I am really confused of what runtime it shows.

105

Re: Plupload 2 Beta

Try in an actual ie7 maybe and see if you still get html5.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: Plupload 2 Beta

Nice work, thanks!
Would it be possible not to overwrite a file when it exsists in the upload directory, but add a sequential number to the new upload i.e. filename(001).extension ?

107

Re: Plupload 2 Beta

@JoomlaEric, you can add any kind of logic to the server-side handler, our bundled upload.php is only an example.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: Plupload 2 Beta

It is vital to me that I have an option to choose a folder from a dialog
Is there any way you can think of that would make that possible?
Forcing users to use drag and drop is a bit complex for some

As the service I'm building is file-hosting center the uploader is going to be the centerpiece of the software..

Is there any way you can think of ?

109

Re: Plupload 2 Beta

@DannyZB, Chrome is the only browser supporting selection of the folders. And even in Chrome the same button cannot pick up the folders and files simultaneously. You can see this in Google Drive, where they have two buttons - one for files and another for folders.

We do support this in the Core (in mOxie's FileInput), but never brought it up in Plupload, since there's very small benefit currently.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: Plupload 2 Beta

Just wondering if I understand this correctly. plupload.full.min.js has grown from 54Kb to 102Kb?

111

Re: Plupload 2 Beta

Yes neutral Why - too big? We had to expand it dramatically to bring in all the new features that were impossible in previous implementation.

Any suggestions to how strip it down are welcome...

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: Plupload 2 Beta

@davit Well, "too big" is arbitrary in this broadband age, however, we also use plupload on mobiles. There the 3G quality tends to go up and down a lot. Size does matter in that case :-)

113

Re: Plupload 2 Beta

It can be custom built into half that size in some cases.

If you want to see your issue fixed, do not report it here, do it on - GitHub.