Changeset 2076141
- Timestamp:
- 04/28/2019 02:25:54 AM (7 years ago)
- Location:
- digi-id-authentication/trunk
- Files:
-
- 2 edited
-
README.md (modified) (2 diffs)
-
digiid-wp-authentication.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
digi-id-authentication/trunk/README.md
r2071932 r2076141 5 5 Tags: Authentication Digibyte Digi-ID digiid 6 6 Requires at least: 3.0.1 7 Tested up to: 5.1. 18 Stable tag: 1.0. 47 Tested up to: 5.1.2 8 Stable tag: 1.0.5 9 9 License: MIT License 10 10 License URI: https://opensource.org/licenses/MIT 11 11 12 Description 13 --- 14 15 Digi-ID Authentication extends wordpress default authentication with the Digi-ID protocol 16 17 Installation 18 --- 19 20 1. Install WordPress plugin 21 2. Activate the plugin through the 'Plugins' menu in WordPress 22 3. Login to admin panel, open Users -> Digi-ID and scan QR from DigiByte App 23 4. You may log in without login and password throw QR 24 25 Requires "GMP PHP extension". If you have not it - install it on the server: `sudo apt install php-gmp` 12 Plugin extends default Wordpress authentication with the Digi-ID protocol. 13 User might one time open Users->Digi-ID and scan QR from his DigiByte App to have 14 ability to log in throw QR without login and password. 15 Requires "GMP PHP extension" (php-gmp module). 26 16 27 17 Frequently Asked Questions … … 34 24 How do I use Digi-ID? 35 25 --- 36 Install a Digi-ID compatable wallet (currently DigiByte-Wallet or DigiByteGo) 26 Install a Digi-ID compatable application (DigiID Simple, Digibyte Wallet or DigiID/AntumID) 27 28 What if authentication doesn't work? 29 --- 30 Some speed boost plugins may be incompatible with this plugin. Try turning them off to see if it fixes the issue. If the plugin still doesn't work for you, please contact me at Telegram: @cept73 -
digi-id-authentication/trunk/digiid-wp-authentication.php
r2071902 r2076141 3 3 * @package Digi-ID Authentication 4 4 * @author Taranov Sergey (Cept) 5 * @version 1.0. 45 * @version 1.0.5 6 6 */ 7 7 /* 8 8 Plugin Name: Digi-ID Authentication 9 9 Description: Digi-ID Authentication, extends WordPress default authentication with the Digi-ID protocol 10 Version: 1.0. 410 Version: 1.0.5 11 11 Author: Taranov Sergey (Cept), digicontributor 12 12 Author URI: http://github.com/cept73 … … 15 15 namespace DigiIdAuthentication; 16 16 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 17 DEFINE("DIGIID_AUTHENTICATION_PLUGIN_VERSION", '1.0. 4');17 DEFINE("DIGIID_AUTHENTICATION_PLUGIN_VERSION", '1.0.5'); 18 18 19 19 require_once ('required_classes.php'); 20 20 21 register_activation_hook( __FILE__, ' digiid_install' );21 register_activation_hook( __FILE__, '\DigiIdAuthentication\digiid_install' ); 22 22 23 23 add_action( 'plugins_loaded', '\DigiIdAuthentication\digiid_update_db_check' );
Note: See TracChangeset
for help on using the changeset viewer.