Banner for Limit Access
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. Wordpress Tutorial
Noted That:
  • To install correctly this limit-access.zip .
  • Fisrt Download the limit-access.zip to your computer
  • Extract/Open limit-access.zip to Your Computer.
  • Then, Find readme.txt file inside limit-access.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " limit-access.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Limit Access

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Limit Access

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Limit Access

Step-5 : Now, Browse " limit-access.zip " Downloaded plugin from your computer, Where you downloaded " limit-access.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Limit Access

Step-6 : Now, Click on " Active Plugin "

Activate Limit Access

Step-7 : Then, See left Side Menu. " Limit Access " folder is added on left Side Menu. Now, Click on " Limit Access " folder.

Noted that: If you do not see " Limit Access " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Limit Access Configurations and Settings or How to work " Limit Access " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Limit Access WP Plugin " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Limit Access WP Plugin
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide
  1. Install the plugin via automatic method or manual upload method
    1. Create a new page with a slug name: “limited-access”;
    2. Edit this “limited-access” page to have a message for the user for when they get logged out.
    3. Activate the plugin.
    4. 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; }

Name