Linux 软件免费装

Limit Access WP Plugin

开发者 owenconti
更新时间 2012年11月12日 00:12
PHP版本: 3.2 及以上
WordPress版本: 3.2

标签

login users limit accounts multiple online sessions

下载

详情介绍:

The Limit Access WP Plugin is a simple plugin that limits the number of IPs that can be accessing an account at the same time. Eg. If $allowedIPs is set to 3, the account "JohnDoe" can be logged into from three separate IPs. When the the account is accessed the fourth time, the user will be logged out and redirected to a custom page made by you. If you have any questions or problems with the plugin, please let me know!

安装:

  1. Install the plugin via automatic method or manual upload method
  2. Create a new page with a slug name: "limited-access";
  3. Edit this "limited-access" page to have a message for the user for when they get logged out.
  4. Activate the plugin.
  5. Congrats you're done!
Example: Settings: $allowedIPs = 3; The account, "test_user" can be logged in from 3 different IPs, but when the fourth instance is accessed, the user will be logged out and redirected to a page explaining what happened. You have the ability to change the number of allowed IPs, the time each record is stored in the database, and if there are special circumstances for certain users. Lines for settings: To change the allowed number of IPs: line 9; To change the time each record is stored: line 21; To alter special circumstances, per user: line 44 - 50; You can add multiple special users by using the OR operator. Eg: if ( $user_login == 'admin' || $user_login == 'joe' ) { exit; }

常见问题:

Why use this plugin?

If you have ever had the need to limit only X-amount of sessions per user, per IP on a WP site, this plugin will do it for you!