I have a Umbraco 7.5.4 site running, but now i get a error when I go to a user profile and click save. In the log I get:
System.Exception: A user with the login '##@##' already exists
at umbraco.BusinessLogic.User.setLoginName(String value)
at umbraco.cms.presentation.user.EditUser.SaveUserClick(Object sender, EventArgs e)
It is not a new user so no surprise that it already exits.
I also found that the issue may be in umbraco.cms.presentation.user.EditUser SaveUser_Click(object sender, EventArgs e)
When changing a property of a User, say anything but the Username, such as User Type or Sections, and then press the Save button, which triggers SaveUser_Click(object sender, EventArgs e), an error warns that a User with that name already exists. Subsequently nothing is saved.
However, I am not creating a new User with an already existing Username, but I am editing and updating an existing user. Therefore, I believe, such error and its warning appear to be a bug. If so, where should I report this?
Unfortunately I have not found a fix. As a workaround I just add a number after Username, press Save and then I remove that number and press Save again.
Error saving user (check log)
I have a Umbraco 7.5.4 site running, but now i get a error when I go to a user profile and click save. In the log I get:
System.Exception: A user with the login '##@##' already exists at umbraco.BusinessLogic.User.setLoginName(String value) at umbraco.cms.presentation.user.EditUser.SaveUserClick(Object sender, EventArgs e)
It is not a new user so no surprise that it already exits.
The user email is replaced with ##@##.
Have some one a solution?
I also found that the issue may be in umbraco.cms.presentation.user.EditUser SaveUser_Click(object sender, EventArgs e)
When changing a property of a User, say anything but the Username, such as User Type or Sections, and then press the Save button, which triggers SaveUser_Click(object sender, EventArgs e), an error warns that a User with that name already exists. Subsequently nothing is saved.
However, I am not creating a new User with an already existing Username, but I am editing and updating an existing user. Therefore, I believe, such error and its warning appear to be a bug. If so, where should I report this?
Unfortunately I have not found a fix. As a workaround I just add a number after Username, press Save and then I remove that number and press Save again.
Did you find a solution?
is working on a reply...