YAFLogo

nagsline
  • nagsline
  • 59% (Neutral)
  • YAF Forumling Topic Starter
15 years ago
Hi atlast I configured my forums. But here I've got some suggestions from my friends like while entering password it asking about strength (like need to enter special charecters and etc..). Generally people dont want to go for that. Can I remove that validation.

That means they can enter any password like only charecters, numerics etc..

Is it possible? If so how can I do it?

Thank you,

Nagu

Sponsor
chriscoe71
15 years ago

Hi atlast I configured my forums. But here I've got some suggestions from my friends like while entering password it asking about strength (like need to enter special charecters and etc..). Generally people dont want to go for that. Can I remove that validation.

That means they can enter any password like only charecters, numerics etc..

Is it possible? If so how can I do it?

Thank you,

Nagu

nagsline wrote:

Modify the Membership section of the web.config file. I'll try to remember to post my settings tomorrow.

http://msdn.microsoft.com/en-us/library/1b9hw62f.aspx 


chriscoe71
15 years ago
Here are my Membership Provider settings. I'm running 1.9.3.

I don't require the use of Non-Alphanumeric characters and the minimum password length is set to 5. I also don't require that a person setup a question and answer in order to register or change passwords.

		<membership defaultProvider="YafMembershipProvider" hashAlgorithmType="SHA1">
			<providers>
				<clear/>
				<add connectionStringName="yafnet" applicationName="YetAnotherForum" name="YafMembershipProvider" requiresUniqueEmail="true" useSalt="true" minRequiredNonAlphanumericCharacters="0" minRequiredPasswordLength="5" requiresQuestionAndAnswer="false" type="YAF.Providers.Membership.YafMembershipProvider"/>
			</providers>
		</membership>

nagsline
  • nagsline
  • 59% (Neutral)
  • YAF Forumling Topic Starter
15 years ago

Here are my Membership Provider settings. I'm running 1.9.3.

I don't require the use of Non-Alphanumeric characters and the minimum password length is set to 5. I also don't require that a person setup a question and answer in order to register or change passwords.

		<membership defaultProvider="YafMembershipProvider" hashAlgorithmType="SHA1">
			<providers>
				<clear/>
				<add connectionStringName="yafnet" applicationName="YetAnotherForum" name="YafMembershipProvider" requiresUniqueEmail="true" useSalt="true" minRequiredNonAlphanumericCharacters="0" minRequiredPasswordLength="5" requiresQuestionAndAnswer="false" type="YAF.Providers.Membership.YafMembershipProvider"/>
			</providers>
		</membership>

chriscoe71 wrote:

Thank you very much it is working fine for me

Users browsing this topic