A user with the email already exists
# help-with-umbraco
c
I am getting this error message when running locally but there is no such user anyone know how I can remove this from the database?
m
Could it be the superadmin? as that user doesn't show for other logged in users?
Copy code
sql
SELECT TOP (1000) [id]
      ,[userDisabled]
      ,[userNoConsole]
      ,[userName]
      ,[userLogin]
      ,[userPassword]
      ,[passwordConfig]
      ,[userEmail]
      ,[userLanguage]
      ,[securityStampToken]
      ,[failedLoginAttempts]
      ,[lastLockoutDate]
      ,[lastPasswordChangeDate]
      ,[lastLoginDate]
      ,[emailConfirmedDate]
      ,[invitedDate]
      ,[createDate]
      ,[updateDate]
      ,[avatar]
      ,[tourData]
  FROM [umbracoUser]
you have to be careful dropping users from the db though.. as content etc could be taged to their id as creator/editor
d
I had this as well recently, but it turned out that the user was disabled in the backoffice and disabled users are hidden from the overview unless you explicitly filter on disabled users
28 Views