PluginProbe
DoLogin Security / 1.2
DoLogin Security v1.2
5.0.10 4.8.3 trunk 1.0 1.1 1.1.1 1.2 1.2.1 1.2.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 1.6 All 64 releases
dologin / dologin.php

dologin.php in DoLogin Security 1.2, at dologin.php

42 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Limit Login Attempts DoLogin
4 * Plugin URI: https://github.com/wpdo/dologin
5 * Description: GeoLocation (Continent/Country/City) or IP range to limit login attempts. Support Whitelist and Blacklist. Will have free text SMS message passcode for 2nd step verification support soon.
6 * Version: 1.2
7 * Author: WPDO
8 * License: GPLv3
9 * License URI: http://www.gnu.org/licenses/gpl.html
10 *
11 * Copyright (C) 2019 WPDO
12 *
13 * This program is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25
26 */
27 defined( 'WPINC' ) || exit;
28
29 if ( defined( 'DOLOGIN_V' ) ) {
30 return;
31 }
32
33 define( 'DOLOGIN_V', '1.2' );
34
35 ! defined( 'DOLOGIN_DIR' ) && define( 'DOLOGIN_DIR', dirname( __FILE__ ) . '/' );// Full absolute path '/usr/local/***/wp-content/plugins/dologin/' or MU
36 ! defined( 'DOLOGIN_PLUGIN_URL' ) && define( 'DOLOGIN_PLUGIN_URL', plugin_dir_url( __FILE__ ) ) ;// Full URL path '//example.com/wp-content/plugins/dologin/'
37
38 require_once DOLOGIN_DIR . 'autoload.php';
39
40 \dologin\Core::get_instance();
41
42