The following snippet provides the sample values of the necessary elements that are to be configured within context.xml if file upload is not working for Sigma: Code Block |
---|
<Context allowCasualMultipartParsing="true"> |
For Weblogic, the following snippet provides the sample values of the necessary elements that are to be configured within web.xml if file upload is not working for Sigma: Code Block |
---|
<web-app>
<!-- ... other configurations ... -->
<context-param>
<param-name>weblogic.httpd.configuration.multipartParsingEnabled</param-name>
<param-value>true</param-value>
</context-param>
</web-app>
<servlet>
<servlet-name>PanelFileUploadServlet</servlet-name>
<servlet-class>com.intellectdesign.canvas.servlets.PanelFileUploadServlet</servlet-class>
<multipart-config>
<location>/</location>
<max-file-size>208488200</max-file-size>
<max-request-size>418018841</max-request-size>
<file-size-threshold>1048576</file-size-threshold>
</multipart-config>
</servlet> |
|