Hello, Im trying to avoid the use of non-alphanumeric caracters in the password in the 1.9.3, and I have read you should do it throught the web.config.
That is my membershipprovider
<membership defaultProvider="YafMembershipProvider" hashAlgorithmType="SHA1">
<providers>
<clear/>
<add connectionStringName="yafnet" applicationName="YetAnotherForum" name="YafMembershipProvider" passwordAttemptWindow="10" enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" passwordFormat="Encrypted" minRequiredPasswordLength="5" minRequiredNonalphanumericCharacters="0" type="YAF.Providers.Membership.YafMembershipProvider"/>
</providers>
</membership>
But it stills ask for non-alphanumeric, anyone knows what am I doing wrong?