Hi,
I'd like to change the password requirements on the yaf registration page. My old registration page only required 4 letters or longer thorugh the machine.config membership settings.
With yaf now though it wants a special characters "!?@ etc" and a different case in the letters.
So i then added this to the web.config membership section:
minRequiredPasswordLength="4"
minRequiredNonalphanumericCharacters="0"
like this:
name="CustomizedMembershipProvider" type="System.Web.Security.SqlMembershipProvider"
minRequiredPasswordLength="4"
minRequiredNonalphanumericCharacters="0"
/>
But that just gives me an error.
Any idea how to change this to what i want here? Thanks!