Hello,
I have created a module which retrieve the password of active user
myUser = UserController.GetCurrentUserInfo();
userName = myUser.Username;
passWord = UserController.GetPassword(
ref
myUser, myUser.Username);
I have two instalations of DNN. In the first server, i recieve the correct password in text plain. But in the other server only recieve numbers.
I thought that the second server retrieved me the password in hash mode.
But In the webconfigs has the same line : passwordFormat= "Encryted"
<
add
name
=
"AspNetSqlMembershipProvider"
type
=
"System.Web.Security.SqlMembershipProvider"
connectionStringName
=
"SiteSqlServer"
enablePasswordRetrieval
=
"true"
enablePasswordReset
=
"true"
requiresQuestionAndAnswer
=
"false"
minRequiredPasswordLength
=
"7"
minRequiredNonalphanumericCharacters
=
"0"
requiresUniqueEmail
=
"false"
passwordFormat
=
"Encrypted"
applicationName
=
"DotNetNuke"
description="Stores and retrieves
membership data from the local Microsoft SQL Server database"/>
Are there any parameter in configuration which can produce that?
Any ideas??
Thanks and sorry by my poor english.