| 开发者 | vincent06 |
|---|---|
| 更新时间 | 2024年10月28日 16:13 |
| PHP版本: | 5.2 及以上 |
| WordPress版本: | 6.7 |
| 版权: | GPLv3 or later |
| 版权网址: | 版权信息 |
✅ Once activated, the plugin will start automatically sending emails for each admin account access.
✅ Believe me, I wish I could say yes, but we all know that security depends on a lot of factors, and that it absolutely cannot depend solely on software protections. This plugin is not a security system, but only a possibility to limit the damage when you realize that unauthorized access has occurred. So, once you have ascertained that there was something that did not work and that allowed access to an attacker, you must be quick to understand what could have opened the door of your site, before it is too late. This plugin could be a valid help used perhaps in conjunction with other plugins that detect failed access attempts, so already in those cases we have notifications of attempted accesses and a notification of an access performed would only be proof that we need to take action, and quickly.
✅ If you have found that access is actually not attributable to you, the only thing you absolutely must do is click on the link received in the email to reset the password and force the logout of that account from all devices.
✅ Follow this guide to learn how to reset your password in several ways: https://wordpress.org/support/article/resetting-your-password/
✅ Notifications are sent per account, so each user will have their own notification counter. For each login, the time between one notification and another is set at 15 minutes. This means that if the same account logs in 5 in less than 15 minutes, you will only receive one notification. And the next one only after 15 minutes have elapsed starting from the first one relating to the first access. I have made available a filter that allows you to change the time that must pass between one notification login and another. To change this time frame to 30 minutes, for example, you can use this snippet of code that you can paste at the end of the currently active theme's functions.php file: add_filter( 'kolorweb_notify_interval', function( $interval ) { return 30; } ); If you want receive notifications for every single admin access, set $interval value to -1 add_filter( 'kolorweb_notify_interval', function( $interval ) { return -1; } );
✅ Report bugs and suggest ideas at: https://wordpress.org/support/plugin/kolorweb-access-admin-notification/