It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Help enable accidentally shut down a system plugin "Atlassian UI Plugin".
In the manage add-os, turned off ('disable') the system plugin "Atlassian UI Plugin" and restart the Confluence.
After that the interface lost all the interactive features provided by the js.
Update the plugin according to the description https://confluence.atlassian.com/display/CONFKB/How+to+Edit+Bundled+or+System+Pluginsnot helped -- plugin updated, but remained in the 'disable' state.
Tell me how you can enable a system plugin bypassing the web interface?
Hi Dimitry,
You can enable the plugin directly from the database as well. Here's how you do it:
select BANDANAVALUE from BANDANA where BANDANAKEY='plugin.manager.state.Map';
<map>
<entry>
<string>com.atlassian.atlassian-failure-cache-plugin</string>
<boolean>false</boolean>
</entry>
<entry>
<string>confluence.extra.chart</string>
<boolean>false</boolean>
</entry>
</map>
update BANDANA set BANDANAVALUE='<map> <entry> <string>confluence.extra.chart</string> <boolean>false</boolean> </entry> </map>' where BANDANAKEY='plugin.manager.state.Map';
Hope this helps!
Regards,
Jing Hwa
Hello Ann, Jing!
You can use the UPM's REST API, documented at https://ecosystem.atlassian.net/wiki/display/UPM/UPM+REST+API
Retrieve the plugin's JSON representation (with sysadmin credentials):
GET /rest/plugins/1.0/${plugin.key}-key
enabled
field in the JSON representation to true
Put the updated representation on the application (with sysadmin credentials):
PUT /rest/plugins/1.0/${plugin.key}-key Content-Type: application/vnd.atl.plugins.plugin+json [JSON representation in BODY]
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreTo anyone who doubts that Atlassians are a little too obsessed with collaboration, and tools related thereto, let me describe a recent discussion we had (which took place on our internal Confluence, ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.