-
Some hosts may not allow access or permission to change this value. In any event, this is not UU related issue. It is a server setup issue. Good luck.
http://www.cyberciti.biz/faq/apache-limiting-upload-size/
http://httpd.apache.org/docs/1.3/mod/core.html#limitrequestbody.
2009-11-06 18:42:52 UTC in Uber Uploader
-
It is likely your apache
`LimitRequestBody`
setting.
2009-11-06 17:35:09 UTC in Uber Uploader
-
Please read the `INSTALL_AND_FAQ.HTML` document. In particular the `APACHE SETTINGS THAT MAY AFFECT UPLOADS`
and `PHP SETTINGS THAT MAY AFFECT UPLOADS`
sections.
2009-11-06 17:33:40 UTC in Uber Uploader
-
> I looked for MD5 through javascript
> and it does not look good. It's OK for
> strings, not for files.
Exactly. You cannot get an MD5 of the file due to browser security. If you go with Java, you might as well go all the way and get a Java based uploader. With a HTTP uploader your choices are limited. Just the nature of the beast I'm afraid.
2009-11-02 14:01:23 UTC in Uber Uploader
-
The following code works in Firefox but unfortunately fails in IE/Opera. :(
alert(elm.files.item(0).fileSize); //Gets the filesize in bytes for the loaded file
alert(elm.files.item(0).getAsDataURL()); //Gets the whole file as a base64 encoded string
http://juanpablostange.blogspot.com/2009/07/upload-progress-bar-100-php.html.
2009-10-30 16:30:20 UTC in Uber Uploader
-
Correction, there is a way to get individual file sizes through the browser but it only works on Firefox and possibly Chrome/Safari. It does not work on IE or Opera.
2009-10-30 16:23:43 UTC in Uber Uploader
-
1. I do not believe there is a way to do a MD5 on a local file through the browser.
2. I do not believe there is a way to get individual file sizes from the post.
So, there is no way that I an aware of to get the original file size and compare it to the uploaded file size. I guess this is a limitation of a HTTP based file uploader. If this is a mission critical app, I would suggest moving...
2009-10-30 16:17:34 UTC in Uber Uploader
-
So where is the OO/JSON/Plugin version of UU? I guess it's still under development.
;)
2009-10-30 13:57:26 UTC in Uber Uploader
-
This is a server issue that has nothing to do with UU. Having said that, It could be the result of UU being set up on a cluster where server A, B and C have sendmail installed and server D does not. So if you happen to hit server D, you will not get an email. Also, needless to say the from and to email addresses have to be valid.
2009-10-27 21:13:28 UTC in Uber Uploader
-
Add the following code to line 408 in the
ubr_file_upload.js
file.
UberUpload.toggleUploadStats();.
2009-10-25 15:53:15 UTC in Uber Uploader