virat111 / gwtupload

Automatically exported from code.google.com/p/gwtupload
Other
0 stars 0 forks source link

Issue when we try to upload file more than 30 MB. #141

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
1.If we try to upload the file with more than 30MB size, we cannot able to save 
the file into database?
2. Is there any thing we need to change to accept all sizes?
3. Now we are using default value in web.xml
 <param-value>3145728</param-value>

Actually we are expecting to allow all file sizes to upload.

We are using gwtupload-0.6.3 with Windows 7 environment.

Original issue reported on code.google.com by kiranadn...@gmail.com on 29 Mar 2012 at 1:06

GoogleCodeExporter commented 9 years ago
You have to do:
1.- Configure gwtupload to accept files greater than 30Mb
  <context-param>
    <param-name>maxSize</param-name>
    <param-value>31457280</param-value>
  </context-param>
2.- Be sure that your ddbb supports storing large files
3.- If you have a webserver in front of your servlet container, you have to 
configure large requests.

Original comment by manuel.carrasco.m on 23 May 2012 at 3:57