Today I migrated my Dev Environment from SVR A to SVR B. All worked fine until I tried to update a user from Administrator to Editor I got:
ERROR SAVING USER (Check Log)
In a failed attempt to solve this problem, I removed the existing dbo user from the my Umbraco database and created another user as dbo. Still nothing. So I ran SQL Profiler to see what was happening and it looks like this particular statement being executed to update the user record, but the update is obvioulsy not working:
exec sp_executesql N'UPDATE umbracoUserLogins SET timeout = @timeout WHERE contextId = @contextId',N'@timeout bigint,@contextId nvarchar(36)',@timeout=634189529343796340,@contextId=N'd62a65fb-0c64-4671-866c-7d944d6580ed'
UMB 4.5.2 Can't Save User Check User Log
UMB Experts,
Today I migrated my Dev Environment from SVR A to SVR B. All worked fine until I tried to update a user from Administrator to Editor I got:
ERROR SAVING USER (Check Log)
In a failed attempt to solve this problem, I removed the existing dbo user from the my Umbraco database and created another user as dbo. Still nothing. So I ran SQL Profiler to see what was happening and it looks like this particular statement being executed to update the user record, but the update is obvioulsy not working:
exec sp_executesql N'UPDATE umbracoUserLogins SET timeout = @timeout WHERE contextId = @contextId',N'@timeout bigint,@contextId nvarchar(36)',@timeout=634189529343796340,@contextId=N'd62a65fb-0c64-4671-866c-7d944d6580ed'
Please Help I'm so close...
is working on a reply...