Export to HTML Results in Blank Files
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
When exporting a space to HTML, the resulting files are blank or do not contain most of the content.
The following appears in the atlassian-confluence.log
file:
1
2
3
INFO: More than the maximum number of request parameters (GET plus POST) for a single request
([10,000]) were detected. Any parameters beyond this limit have been ignored. To change this limit,
set the maxParameterCount attribute on the Connector.
Cause
For large spaces, the export action violates the default maxParameterCount
in the Tomcat connector.
Resolution
Include the parameter in the Tomcat connector by editing the server.xml
in your <atlassian-installation/conf/>
directory. In a default connector, it would look like the following example:
1
2
3
4
<Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxParameterCount="20000"
maxThreads="200" minSpareThreads="10"
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11NioProtocol" />
Since the default value is 10000
, you may tweak the setting in increments until resolution.
Was this helpful?