We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change default setting to 10 MB filesize currently setting of 100MB makes no sense
The text was updated successfully, but these errors were encountered:
Overwrting is possible with the following web.xml setting. - need to be documented
<!-- Fileupload servlet --> <servlet> <servlet-name>FileuploadServlet</servlet-name> <servlet-class>org.imixs.workflow.faces.fileupload.AjaxFileUploadServlet</servlet-class> <load-on-startup>0</load-on-startup> <multipart-config> <location>/tmp</location> <max-file-size>5242880</max-file-size> <max-request-size>5242880</max-request-size> <file-size-threshold>1048576</file-size-threshold> </multipart-config> </servlet> <servlet-mapping> <servlet-name>FileuploadServlet</servlet-name> <url-pattern>/fileupload/*</url-pattern> </servlet-mapping>
Sorry, something went wrong.
eed3d35
fixed
8a44d36
imixs#389
No branches or pull requests
change default setting to 10 MB filesize
currently setting of 100MB makes no sense
The text was updated successfully, but these errors were encountered: