Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
When I upgrade the umbraco installation it works fine,
The problem is that no user can logg in to the admin pages
If I look in the database the userinformation is still there
What can I do ?/Henrik/
Hi Henrik
Umbraco 4 is using password hashing so to be able to login to the backoffice you need to change passwordFormat="hashed" to clear.
To do this you need to open the web.config and go to the <membership> element and make the change in the two <add> elements.
Hope this helps!
/Jan
In V4, the passwords are encrypted, but your passwords are currently still unencrypted in the database. Have a look at the web.config and remove any of these attributes:
passwordFormat="Hashed"
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
upgradring from 3 to 4
When I upgrade the umbraco installation it works fine,
The problem is that no user can logg in to the admin pages
If I look in the database the userinformation is still there
What can I do ?
/Henrik/
Hi Henrik
Umbraco 4 is using password hashing so to be able to login to the backoffice you need to change passwordFormat="hashed" to clear.
To do this you need to open the web.config and go to the <membership> element and make the change in the two <add> elements.
Hope this helps!
/Jan
In V4, the passwords are encrypted, but your passwords are currently still unencrypted in the database. Have a look at the web.config and remove any of these attributes:
is working on a reply...