Upgraded 7.3 to 7.4.1 - Now being asked for username password in backoffice
Hi!
I just upgraded from 7.3 to 7.4.1 and now when I log in to the back office an click on the developer tab I'm prompted for a username and password. No matter what I enter, it doesn't except the credentials and eventually kicks me out to the default login screen for backoffice.
For me it was the Dashboard.config that did not merge correctly. It still had the reference to the ChangePassword tab in the StartupDeveloperDashboardSection.
Upgraded 7.3 to 7.4.1 - Now being asked for username password in backoffice
Hi! I just upgraded from 7.3 to 7.4.1 and now when I log in to the back office an click on the developer tab I'm prompted for a username and password. No matter what I enter, it doesn't except the credentials and eventually kicks me out to the default login screen for backoffice.
Has anyone else has a similiar issue?
I've also had a look in the console and I am getting the error:
Try to increment the version in config/clientDependency.config and to empty the cache browser-side
I got the same problem on a previous upgrade.
Its the /Config/trees.config that has not been updated in the upgrade. Replace it with the trees.config file from the 7.4.1.zip.
Cheers. That seems to have stopped the prompts but I'm still getting blank screens on the right hand side when I click on a node in my content tree.
Wierd. Can it be a cache problem? Have you tried a hard refresh?
I've cleared out the app pool, I've cleared my cache and tried it on a different PC as well.
It loads the recycle bin and displays everything there. Just nothing in my Home node or anything below it.
It is strange. No error messages either.
Not sure what has happened but just went back to check and it's all working perfectly again!
Thanks for your help!
Great! Glad to hear that it worked out. :)
For me it was the Dashboard.config that did not merge correctly. It still had the reference to the ChangePassword tab in the StartupDeveloperDashboardSection.
This was my issue as well, the upgrade was to 7.4.3 but exactly the same issue. Thanks for posting, it saved me a bunch of time!
I experienced the same error, but in my case the problem was due to a renaming of the "dataTypes" entry in trees.config.
Here is what I did.
Replaced this:
<add initialize="true" sortOrder="0" alias="datatype" application="developer" title="Data Types" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.DataTypeTreeController, umbraco" />
with this:
<add initialize="true" sortOrder="0" alias="dataTypes" application="developer" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.DataTypeTreeController, umbraco" />
And then touched the clientdependency number to trigger a refresh
is working on a reply...