How to reenable the new dashboard in Confluence 5.9 and 5.10
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
Summary
After switching to the old dashboard by clicking the "Give Me The Old Dashboard" button, a user might want to reenable the new dashboard for various reasons.
Solution
Recommended Solution
Direct the affected user to <base_url>/users/darkfeatures.action
At the bottom should be an entry for
simple.dashboard.disabled
Direct the affected user to click
Remove
Alternative Solution (to remove the entry on behalf of the user)
Shutdown your Confluence
Run the following query against your database (replace <user_name> with the affected user's username)
1 2 3
delete from OS_PROPERTYENTRY where STRING_VAL = 'simple.dashboard.disabled' and ENTITY_NAME = CONCAT('USERPROPS-', (select user_key from user_mapping where username='<user_name>'));
Start Confluence
Was this helpful?