Hello, you can make some configuration changes in the web.config, membership settings. By default the membership password requires a Non-alphanumeric character(like !#$%). Here is an example of one of my membership sections.

        <membership defaultProvider="AspNetSqlMembershipProvider">
           <providers>
           <clear />
            <add connectionStringName="SqlServices"
                    enablePasswordReset="true"
                    requiresUniqueEmail="true"
                    minRequiredNonalphanumericCharacters="0"
                    passwordFormat="Hashed"
                    applicationName="/"
                    name="AspNetSqlMembershipProvider"
                    type="System.Web.Security.SqlMembershipProvider" />
           </providers>
        </membership>

Mostly putting minRequiredNonalphanumericCharacters="0" will get rid of that error.

Thanks,

JefferyS

Astralis Lux wrote:
No matter the input, when registering a user with 2.0 (RegisterUser.aspx) I get this error:
 
Password length minimum: 7. Non-alphanumeric characters required: 1.


Explore the seven wonders of the world Learn more!

------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/

_______________________________________________ Flexwiki-users mailing list Flexwiki-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flexwiki-users



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Flexwiki-users mailing list
Flexwiki-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flexwiki-users

Reply via email to