Export to HTML Results in Blank Files

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

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:

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:

<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.

 

Last modified on Apr 13, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.