內容簡介
總結:這個外掛強制使用者使用強密碼,當使用者更改密碼時,必須包含至少一個大寫字母、一個小寫字母、一個數字和一個特殊符號。密碼的最小長度由外掛的設定定義。此外,你也可以定義在多久之後使用者將被強制更改密碼。外掛的重要功能是透過 PHP 常數來定義設定。
1. 使用此外掛時,使用者更改密碼時必須包含哪些元素?
- 一個大寫字母
- 一個小寫字母
- 一個數字
- 一個特殊符號
2. 外掛可以根據什麼設定來定義密碼的最小長度?
- 外掛的設定
3. 你可以定義多久之後使用者將被強制更改密碼?
- 是的,你可以定義強制使用者更改密碼的時間間隔。
4. 外掛的重要功能是透過什麼方式來定義設定?
- 透過 PHP 常數
5. 請問 SAFETY_PASSWORDS_MIN_LENGTH 是用來定義什麼?
- 用來定義密碼的最小長度。
6. 外掛有哪些其他外掛的整合?
- 與 Stream 外掛有整合。
7. 外掛的開發在哪個平台進行?
- 在 GitHub 上進行。
外掛標籤
開發者團隊
原文外掛簡介
This plugin enforces users to use strong passwords. It means that when a user changes his password, the password must contain at least:
one uppercase letter;
one lowercase letter;
one number;
one special character
and should be never used before.
The minimum length of the password is defined by the plugin’s settings.
You can also define the period of time after which the user will be forced to change his password.
The important feature of the plugin is settings defining by means of PHP constants.
SAFETY_PASSWORDS_MIN_LENGTH – (int/string, number of symbols) the minimum length of the password;
SAFETY_PASSWORDS_RESET_INTERVAL – (int/string, days) the period of time after which the user will be forced to change his password;
SAFETY_PASSWORDS_RP_ON_REGISTRATION – (bool) whether enforce users to change their password after registration or not.
Integrations with other plugins:
The plugin has integration with the Stream plugin.
Plugin development is on the GitHub.
