HTML Export Only Displays $rendererBean.exportWikiToXHtml($page) as The Content
Symptoms
After exporting Page or Space to HTML, the content of the pages displayed nothing but:
$rendererBean.exportWikiToXHtml($page)
Cause
There is a custom or incompatible Export Layout either in the Global level or in the affected Spaces level.
Resolution
Run the following SQL query to detect the culprit:
SELECT DECORATORID, SPACEKEY FROM DECORATOR WHERE BODY LIKE '%$rendererBean.exportWikiToXHtml($page)%';
Note down the
DECORATORID
from the result.- Backup Confluence database or just simply backup the custom layout in the above result if necessary
Delete them by running this query:
DELETE FROM DECORATOR WHERE DECORATORID = Decorator-ID-From-The-Above-Result;
- Restart Confluence
Last modified on Feb 26, 2016
Powered by Confluence and Scroll Viewport.