0

私の DNN バージョンは 07.02.00 です。記号「%」を含むパスワードを変更/リセットしようとすると、次のエラーが発生します。

Failed to update password - either the username/token combination is invalid (or the token has expired), or the password is not valid. Passwords must be at least 7 characters in length and contain at least 0 non-alphanumeric characters.

その正規表現を使用してこれを解決しようとしました(機能しませんでした):

<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" **passwordStrengthRegularExpression="^.*(?=.{6,}).*$"** connectionStringName="SiteSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="0" requiresUniqueEmail="false" passwordFormat="Hashed" applicationName="DotNetNuke" description="Stores and retrieves membership data from the local Microsoft SQL Server database" />

これがバグなのか、それとも私の解決策が間違っているのか、誰にも分かりますか?

4

1 に答える 1

0

これは通常、パスワードを変更しようとしたときに発生します。これは古いパスワードと似ており、記号「%」とは関係ありません。

于 2015-01-20T09:07:10.783 に答える