이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Limit Access WP Plugin

설명

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
    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;
    }

FAQ

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!

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“Limit Access WP Plugin”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Limit Access WP Plugin”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0

  • Initial build

1.1

  • Updated the README