What javascript files are you including from plupload? If you are using the individual ones you may not have included the plupload.html4.js file?
Plupload Forum
Search options (Page 6 of 10)
Plupload Forum → Posts by mike
Posts found: 126 to 150 of 233
126 2011-09-22 21:16:11
Re: Problem loading runtimes and issues with html4 add files button (6 replies, posted in General discussion)
127 2011-09-21 05:49:24
Re: Custom Upload example in documentation not working (4 replies, posted in General discussion)
Glad you've sorted out the problem.
The "full" file is just a straight concatenation of each of the other minified js source files, except the UI and JQuery widget files:
http://www.plupload.com/punbb/viewtopic.php?id=1139
You can either concatenate the dev files, or just include them individually, and you will get the same result as including the plupload.full.js - but with real variable names, comments, indenting, etc.
128 2011-09-21 01:24:42
Re: Custom script is slow or does not work in IE (16 replies, posted in Core API)
It will be a day or two until I have time to check. I'll post again when I have.
129 2011-09-20 11:11:17
Re: Custom Upload example in documentation not working (4 replies, posted in General discussion)
Try using the development versions of the plupload javascript files instead of the minified versions:
https://github.com/moxiecode/plupload/downloads
Any error message will be more descriptive with the development files.
130 2011-09-20 07:07:08
Re: Not uploading files larger than 95MB! (8 replies, posted in General discussion)
I don't have any brilliant ideas off the top of my head. I presume you have read the "Large Files" sticky post? If not that might be worth a shot:
131 2011-09-20 04:27:07
Re: show progress bar per each single file (7 replies, posted in General discussion)
Progress events work fine for single files without chunking. But the number of progress updates you will get will vary by runtime and, in the case of html5, by browser. There is no control over how often a progress event is passed through in the html5 runtime - what you see is what you get. Your mileage may vary with the other runtimes as well. It's not uncommon with many of the runtimes, and no chunking, to only get one progress update per file - when the file has completed uploading.
Ad davit mentions above if you need more updates use chunking.
133 2011-09-19 18:57:00
Re: Not uploading files larger than 95MB! (8 replies, posted in General discussion)
I thought you said you were using ASPX?
If you are using php, someone had a somewhat similar problem a couple of days ago:
134 2011-09-19 10:00:59
Re: Custom script is slow or does not work in IE (16 replies, posted in Core API)
Is this in IE9 or IE8? The specific symptoms you describe in your most recent post are pretty much the same as those described in one of the issues I linked to above:
https://github.com/moxiecode/plupload/issues/323
All the issues with flash and IE seem to be with IE9. There is a workaround in issue 323 that may fix the problem if you are only seeing the problem in IE9.
135 2011-09-19 09:56:38
Re: Not uploading files larger than 95MB! (8 replies, posted in General discussion)
Most likely some kind of limit setting on your server. PHP has 2 or 3 settings that can limit upload file size - perhaps ASP is similar?
Other possibility is that there is a problem with a plugin (flash, silverlight, etc.). What runtime are you using in each browser to upload?
136 2011-09-17 18:19:00
Re: submitting additional form data with each file (1 replies, posted in General discussion)
This might be relevant to your problem:
137 2011-09-16 16:10:04
Re: Custom script is slow or does not work in IE (16 replies, posted in Core API)
There have been a number of issues reported recently concerning IE9 and flash:
https://github.com/moxiecode/plupload/issues/346
https://github.com/moxiecode/plupload/issues/323
https://github.com/moxiecode/plupload/issues/378
Although this is the first I've heard of a problem with IE8. AFAIK IE8 and flash still work fine.
What is your configuration?
138 2011-09-16 16:04:44
Re: Max # of files (3 replies, posted in General discussion)
139 2011-09-16 01:56:49
Re: Possible to extract files from a .zip upload? (1 replies, posted in General discussion)
Once you have the zip file on the server, you can do whatever you want with it. The sample php files that come with the examples are meant to be tailored to whatever you need.
140 2011-09-16 01:54:40
Re: Uploading a folder with multiple files (1 replies, posted in General discussion)
JavaScript and the DOM do not allow you to select or manipulate a folder. You would have to use some kind of java applet.
141 2011-09-16 01:52:01
Re: Retrieving File Object (2 replies, posted in General discussion)
I believe there was some discussion about this related to a pull request on github:
142 2011-09-16 01:48:37
Re: Files greater than 10mb not appearing in upload directory (7 replies, posted in General discussion)
According to the PHP docs post_max_size:
Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. If memory limit is enabled by your configure script, memory_limit also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size.
143 2011-09-15 07:50:48
Re: Files greater than 10mb not appearing in upload directory (7 replies, posted in General discussion)
What are you using to receive the files on the server?
144 2011-09-13 10:22:50
Re: Scan automatically USB ports for upload? (1 replies, posted in General discussion)
Unlikely, as the web-browser supplies the file selection dialog, and you don't have that kind of control over the dialog from your JavaScript.
145 2011-09-13 10:19:53
Re: Plupload v1.5b (16 replies, posted in News)
This is most likely due to a bug in the current release of Safari 5.1 for Windows. There is an issue logged for this:
https://github.com/moxiecode/plupload/issues/363
You can check this - do you get the same behaviour with Firefox or Chrome and the HTML5 runtime?
146 2011-09-08 16:59:39
Re: plupload.html4.js development js file (1 replies, posted in General discussion)
You can download the "_dev" version of the latest release from here:
https://github.com/moxiecode/plupload/downloads
You can also pull directly from the source code at github, but you won't get built versions of the flash or silverlight components if you do that.
147 2011-09-08 16:54:04
Re: html5 runtime ie (3 replies, posted in General discussion)
IE has not implemented enough of the HTML5 standard for upload to work. You must use one of the other runtimes. IE is one of the primary reasons we need more than one runtime (although there are lots of other reasons - e.g. large file support, reliability, older version of other browsers, etc.).
148 2011-09-08 07:53:03
Re: html4 runtime but IE9 does not (5 replies, posted in General discussion)
Might be a good idea to log an issue on github about this problem:
149 2011-09-07 07:58:08
Re: Plupload ASP (18 replies, posted in Core API)
What specifically are the problems with your implementation? The examples that come bundled with plupload all provide a PHP backend implementation. I would think that the natural division between the browser and server would be relatively clear and an ASP implementation would be similar in concept to the sample PHP implementations.
Also here is some sample asp code for uploading to S3, perhaps there are some similarities to what you are trying to do:
150 2011-09-07 07:49:30
Re: Resize certain images on client side not working (8 replies, posted in General discussion)
I believe the fix is in the current master branch on github. You can pull the code directly from there:
https://github.com/moxiecode/plupload
Also, based on comments on the forum and on github, I think a minor release may come out in the next couple of weeks - but this could change of course. The fastest way is to get the code directly from github.
Posts found: 126 to 150 of 233
Plupload Forum → Posts by mike
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.126 seconds (82% PHP - 18% DB) with 5 queries