-
Notifications
You must be signed in to change notification settings - Fork 24
Unable to sign in after registering and activating accounts #14
Comments
I believe this is caused when a users samAccountName and first part of email address are not the same thing. The LogonController, however, looks at User.Identity.Name, which is your Domain\samAccountName. It then strips off the Domain\ part, and looks for that LoginID. I've submitted a pull request that changes both controllers to use User.Identity.Name instead. This should also allow users with the same name but from domains to log in- which, admittedly, I suspect is unlikely. |
Thank you Mark! That does match our environment, the names do not match up. |
Waiting on approval to release my PR from our internal teams- and then MS will need to accept it. Thinking I'll tweak it just a bit- if we just alter the Create User function to use the 2nd half of Http.Identity.User (IE, just the samAccountName), it'll maintain backwards compatibility with older versions. That means that if you want to make stuff work today, open up your database and check the user table- change LogonID from your email address to your login id. IE, if my email is [email protected], but I type mspowell into windows to log in- change it from Mark.Powell to mspowell. |
update users That worked! We are in! Thanks for the help. Look forward for the updates. |
Great. Does the Settings page work for you? I'm still playing with it, not sure if I made a mistake or it's a similar issue yet. |
No issues here. Settings are loading fine. We haven't configured them yet though. |
Submitted. |
We are just setting the EMSLP up in our PROD environment and cannot get any user to sign in.
"We couldn't sign you in because your account isn't currently active. Please register or contact your site administrator."
One concern, the servers are in a subdomain of the domain where the users accounts reside.
We did verify the users appear in the dbo.Users table in SQL with the proper email address.
What info can we provide to troubleshoot this issue?
The text was updated successfully, but these errors were encountered: