Problem:
Blocking when working through the Ray-QC checklist of the Rayflow account.
Solution:
We suggest increasing maxInvalidPasswordAttempts on the Rayflow Server to 25.
For this, web.config (installation file from RayFlow) must be adapted. A new line (maxInvalidPasswordAttempts="25") must be added:
<add name="SqlProvider" type="System.Web.Security.SqlMembershipProvider"
connectionStringName="RayflowEntities"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
passwordFormat="Hashed"
passwordStrengthRegularExpression="^(?=.*[A-Za-z])(?=.*\d)(?=.*[^A-Za-z0-9]).{6,}$"
description="Password needs to contain at least 1 alphabetic, 1 numeric and 1 non-alpha-numeric character."
minRequiredNonalphanumericCharacters="1"
minRequiredPasswordLength="6"
applicationName="/"
requiresUniqueEmail="false"
maxInvalidPasswordAttempts="25" />
Comments
0 comments
Please sign in to leave a comment.