Quite an old thread but maybe someone can benefit from this:I have enocode (password) string in my progress db in _user._Password field.
I want to decode it.
for each _user where _userid = "JohnDoe"
delete _user.
end.
create _user.
assign _user._userid = "JohnDoe"
_user._password = decode ("mypassword")
_user.user-name = "John Doe"
What's the decode() function? I assume it's meant to say encode()Quite an old thread but maybe someone can benefit from this:
Code:for each _user where _userid = "JohnDoe" delete _user. end.
Code:create _user. assign _user._userid = "JohnDoe" _user._password = decode ("mypassword") _user.user-name = "John Doe"
I just did this because I had the same problem and I was searching google for how to decode and saw this thread. Didn't know root password so I deleted _user for root and created it again. Worked perfectly. Now I can get into the system using the new password I created for root.
Correct. I mistyped. It should sayWhat's the decode() function? I assume it's meant to say encode()
create _user.
assign _user._userid = "JohnDoe"
_user._password = encode ("mypassword")
_user.user-name = "John Doe"