Difference between revisions of "Large war file uplod error"

From MyWiki
Jump to: navigation, search
(Created page with " The default tomcat7 install for the module "manager" contains the maximum file size in 50MB or 52428800, there's the default value in \webapps\manager\WEB- INF\web.xml...")
 
Line 2: Line 2:
 
  size in 50MB or 52428800, there's the default value in \webapps\manager\WEB-
 
  size in 50MB or 52428800, there's the default value in \webapps\manager\WEB-
 
  INF\web.xml
 
  INF\web.xml
 
+
.
 
     <multipart-config>
 
     <multipart-config>
 
       <!-- 52MB max -->
 
       <!-- 52MB max -->
Line 9: Line 9:
 
       <file-size-threshold>0</file-size-threshold>
 
       <file-size-threshold>0</file-size-threshold>
 
     </multipart-config>
 
     </multipart-config>
 
+
.
 
  I changed that value to a greater and it works.
 
  I changed that value to a greater and it works.
 
+
.
 
  Regards,
 
  Regards,
 
+
.
 
  Alejo
 
  Alejo

Revision as of 11:18, 13 July 2014

The default tomcat7 install for the module "manager" contains the maximum file 
size in 50MB or 52428800, there's the default value in \webapps\manager\WEB-
INF\web.xml

.

   <multipart-config>
     <max-file-size>52428800</max-file-size>
     <max-request-size>52428800</max-request-size>
     <file-size-threshold>0</file-size-threshold>
   </multipart-config>

.

I changed that value to a greater and it works.

.

Regards,

.

Alejo