This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch fix/max-files-action-file-upload in repository https://gitbox.apache.org/repos/asf/struts-site.git
commit c28ee7f0e431d7e99afd7503b617bf0c77dec989 Author: Lukasz Lenart <[email protected]> AuthorDate: Fri Oct 17 07:19:41 2025 +0200 Documents bug with maxFiles setting for ActionFileUploadInterceptor as well --- source/core-developers/action-file-upload.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/core-developers/action-file-upload.md b/source/core-developers/action-file-upload.md index 2510a5c37..289b5090e 100644 --- a/source/core-developers/action-file-upload.md +++ b/source/core-developers/action-file-upload.md @@ -178,6 +178,10 @@ To change this value define a constant in `struts.xml` as follows: </struts> ``` +**Note**: This limit also affects number of normal fields in the request, there is an open bug in the Commons FileUpload +library to address this problem, see [FILEUPLOAD-351](https://issues.apache.org/jira/browse/FILEUPLOAD-351). +{:.alert .alert-warning} + ### File Size Limits There are multiple methods to enforce file size limits.
