minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" But what about the others? Do they all have to be set? Some of them seem to be configurable options in the Membership Provider Settings of the User Settings page and others are fixed. If they all have to be set could I get some help with the values?
passwordAttemptThreshold="int" change to: passwordAttemptThreshold="5"passwordAttemptWindow="int" change to: passwordAttemptWindow="10"enablePasswordRetrieval="[true|false]" change to: enablePasswordRetrieval="true"enablePasswordReset="[true|false]" change to: enablePasswordReset="true" minRequiredPasswordLength="int" change to: minRequiredPasswordLength="7"minRequiredNonalphanumericCharacters="int" change to: minRequiredNonalphanumericCharacters="1"passwordFormat="[Clear|Hashed|Encrypted]" change to: passwordFormat="Encrypted" Here are the settings where I am not sure what to do:connectionStringName="string"requiresQuestionAndAnswer="[true|false]" applicationName="string" requiresUniqueEmail="[true|false]" description="string"
Ok, I have found the answer to the correct values. I see the line:
type="System.Web.Security.SqlMembershipProvider" connectionStringName="SiteSqlServer" enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="false" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="0" requiresUniqueEmail="false" passwordFormat="Encrypted" applicationName="DotNetNuke" description="Stores and retrieves membership data from the local Microsoft SQL Server database" />
in the web.config file.So, I will just change the minRequiredNonalphanumericCharacters to 1.