Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you are planning to update to latest LTS or latest 8.2.x/8.3.x version of Confluence and have ConfiForms forms with a number fields that exceed 256 then please vote for this issue to be fixed https://jira.atlassian.com/browse/CONFSERVER-88259 and the workaround suggested

If you are using Confluence 8.4.1 and later then please see this bug https://jira.atlassian.com/browse/CONFSERVER-92486  and the workaround suggested

Info

Basically to make ConfiForms work as you use to on Confluence 8.x you will need to have at least the following properties adjusted/added into confluence.cfg.xml 

Code Block
<property name="struts.multipart.maxStringLength">100000</property>
<property name="struts.multipart.maxFiles">1000</property>

These allow the forms to have 1000 fields and the field value accepted could be more than 100000 bytes

You may adjust those to your needs, see https://jira.atlassian.com/browse/CONFSERVER-88259 and https://jira.atlassian.com/browse/CONFSERVER-92486 for the details


...