Clicking on Plugin Repository, Office Connector Configuration, WebDAV Configuration, or Configure Allowlist yields 'Page Not Found' in 2.10.x
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
Symptoms
Some links in Admin Console wil yield a "Page not found", for instance, when clicking on:
Plugin Repository
WebDAV configuration
Configure allowlist
Office Connector Configuration
Cause
Plugin Repository Client is version 2.13.3, which is not compatible with 2.10.x. See APR-171.
Resolution
*To resolve this problem, remove the Confluence Repository Client from the PLUGINDATA table: *
Run:
1
select PLUGINDATAID, PLUGINKEY, FILENAME from PLUGINDATA where PLUGINKEY = 'confluence.repository.client';
Ensure there are no records returned for this query. If there are, remove them from the databese:
1
delete from PLUGINDATA where PLUGINKEY = 'confluence.repository.client';
Also uninstall it through the plugin manager, from
Administration >> Plugins
. Confluence will then reload the bundled plugin in the next startup.Restart Confluence to reload the plugin from the bundled-plugins folder.
Was this helpful?