You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like AD provider successfully connects to AD, gets user information, but fails to create user in DNN. My wild guess - due to random password doesn't match the required parameters?
Software Versions
DNN: 08.00.04
Module: 07.00.00
To Reproduce
Steps to reproduce the behavior:
Install and configure the AD provider
Enable it via site extensions
Try to login with existing AD account credentials
Error log
Log entries with Debug mode enabled:
Description:@getuser:Getting ready to getUserEntryByName. LoggedOnUserName: DOMAIN\test_user
Description:@getuser:Successfully retrieved user entry by name. Username: DOMAIN\test_user ...
<addname="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SiteSqlServer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
minRequiredPasswordLength="7"
minRequiredNonalphanumericCharacters="1"
requiresUniqueEmail="false"
passwordFormat="Hashed"
applicationName="DotNetNuke"
description="Stores and retrieves membership data from the local Microsoft SQL Server database" />
The text was updated successfully, but these errors were encountered:
roman-yagodin
changed the title
Cannot login - error when creating user
Cannot login - error when creating user?
Nov 16, 2020
roman-yagodin
changed the title
Cannot login - error when creating user?
Cannot login - error when creating DNN user?
Nov 16, 2020
I have confirmed that the random password created in this module is all numeric. Requiring non alpha characters will trigger an issue. Random password code should be refactored to add upper and lower case letters in case these are required.
Describe the bug
It seems like AD provider successfully connects to AD, gets user information, but fails to create user in DNN. My wild guess - due to random password doesn't match the required parameters?
Software Versions
To Reproduce
Steps to reproduce the behavior:
Error log
Log entries with Debug mode enabled:
Additional context
From
web.config
:The text was updated successfully, but these errors were encountered: