-
Bug
-
Resolution: Not a bug
-
Low
-
None
-
8.8.0, 8.5.7, 7.19.20
-
None
-
1
-
Severity 3 - Minor
-
Atlassian Update - 27 Feb 2024
PLEASE NOTE: This is not a bug and is intended behaviour due to security changes. Please see our post on this at https://community.developer.atlassian.com/t/changes-to-the-installation-of-dc-apps/77429
Issue Summary
In Confluence v8.8.0, the Upload App button on the Manage Apps page is not visible
Steps to Reproduce
- Navigate to the Manage Apps page
Expected Results
Upload App button should be visible
Actual Results
Upload App button is not visible
Workaround
- Re-enable the UI upload button and API. Setting the system property upm.plugin.upload.enabled to true. For security reasons, do not leave this setting on permanently. We recommend turning it off once plugin upload is complete.
On Linux setenv.sh
CATALINA_OPTS="-Dupm.plugin.upload.enabled=true ${CATALINA_OPTS}"
On Windows setenv.batset CATALINA_OPTS=-Dupm.plugin.upload.enabled=true %CATALINA_OPTS%
- Load custom plugins from your Confluence file system. Set the system property confluence.plugins.extra.bundled.locations to a target location of your custom plugins, which will be loaded into the system upon restart. We recommend a directory within the Confluence home directory, such as $CONFLUENCE_HOME/plugins/installed-plugins. Make sure you restart Confluence after setting this property.
Kubernetes
In the helm chart, navigate to the CONFLUENCE section and place this property under 'additionalJvmArgs' like so:
confluence:
additionalJvmArgs:
- "-Dupm.plugin.upload.enabled=true"