After upgrading from 5.6.3 to 6.0.0 - no errors. I was able to login using my admin login. Then I rebooted to start everything fresh, and now it will not accept my login (or any valid user/pass combo). I tried using the aspnet_Membership_ResetPassword script (entire script below) - no help.
My original (4.9.3) website, was set to use local authentication only. So my upgrade to 6.0.0 really starts there, but I used the suggested path (4.9.3 -> 4.9.5 -> 5.4.4 -> 5.6.3 -> 6.0.0)
And of course my SMTP setting aren't working so no help there.
What can I do/check?
Thanks, Cliff
----------------------------------------------------------------
Declare @UserName NVarChar(255)
Declare @NewPassword NVarChar(255)
Declare @PasswordSalt NVarChar(128)
Declare @Application NVarChar(255)
-- Enter the user name and new password between ''
-- do not leave any spaces unless intended to do so.
-- Edit only between single quote characters
Set @UserName = 'MetronsNuke' -- This default DNN host user
Set @NewPassword = 'nuke@metron' --New password
-- Do not modify any code below this line
Set @Application = (SELECT [ApplicationID] FROM aspnet_Users WHERE UserName=@UserName)
Set @PasswordSalt = (SELECT PasswordSalt FROM aspnet_Membership WHERE UserID IN (SELECT UserID FROM aspnet_Users WHERE UserName=@UserName))
Exec dbo.aspnet_Membership_ResetPassword @Application, @UserName, @NewPassword, 10, 10, @PasswordSalt, -5