Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Joe Codino 25 posts 125 karma points
    Jan 15, 2016 @ 23:09
    Joe Codino
    0

    Change Password at every access

    I'm using Umbraco v7.3.4. Every time an user log in the Umbraco administration website, the starting page is Change Password. Changing the password doesn't solve the problem, the Change Password page appears at every logon. It happens to all users, both administrators and Editors. What's wrong? Some time ago the starting page was Home. Joe

  • Marc Goodson 2144 posts 14347 karma points MVP 8x c-trib
    Jan 16, 2016 @ 22:21
    Marc Goodson
    2

    Hi Joe

    Take a look in your /config/dashboard.config file

    this is the file that determines which dashboards are shown in which section of Umbraco.

    There should be an entry like so:

     <section alias="StartupDashboardSection">
        <access>
          <deny>translator</deny>
        </access>
        <areas>
          <area>content</area>
        </areas>
        <tab caption="Get Started">
          <access>
            <grant>admin</grant>
          </access>
          <control showOnce="true" addPanel="true" panelCaption="">
            views/dashboard/default/startupdashboardintro.html
          </control>
        </tab>
        <tab caption="Change Password">
          <control showOnce="false" addPanel="false" panelCaption="">
              views/dashboard/ChangePassword.html
            </control>
        </tab>
      </section>
    

    It is probably the 'showOnce' setting that means users were seeing the welcome dashboard but now see the Change Password one when logging in.

    You can create your own custom welcome dashboard that is displayed when users login to provide information about getting started with your implementation of Umbraco or install a package like 'The Dashboard' that gives useful information to editors on first login:

    https://our.umbraco.org/projects/backoffice-extensions/the-dashboard/

Please Sign in or register to post replies

Write your reply to:

Draft