enkelmedia / TheDashboard

Magic dashboard for Umbraco
MIT License
39 stars 42 forks source link

How do i make this appear? #41

Closed kieron closed 5 years ago

kieron commented 5 years ago

Hi, I have installed this but can't see it anywhere, do I need to turn it on or something?

enkelmedia commented 5 years ago

Hi! The installer should add some XML to the /config/dasboard.config file but if it did not it's probably something wrong with your write permissions.

The code for this is here: https://github.com/enkelmedia/TheDashboard/blob/master/TheDashboard/Install/PackageActions/TheDashboardPackageAction.cs

If you need to do it manually, just open the dashboard.config file and add:

<section alias="TheDevDashboard"> <areas> <area>developer</area> </areas> <tab caption="Developer dashboard"> <control addPanel="true" panelCaption="">/app_plugins/TheDashboard/TheDevDashboard.html</control> </tab> </section> <section alias="TheDashboard"> <areas> <area>content</area> </areas> <tab caption="Welcome"> <control addPanel="true" panelCaption="">/app_plugins/TheDashboard/TheDashboard.html</control> </tab> </section>