Plugin Directory

Changeset 2076141


Ignore:
Timestamp:
04/28/2019 02:25:54 AM (7 years ago)
Author:
cept
Message:

1.0.5

Location:
digi-id-authentication/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • digi-id-authentication/trunk/README.md

    r2071932 r2076141  
    55Tags: Authentication Digibyte Digi-ID digiid
    66Requires at least: 3.0.1
    7 Tested up to: 5.1.1
    8 Stable tag: 1.0.4
     7Tested up to: 5.1.2
     8Stable tag: 1.0.5
    99License: MIT License
    1010License URI: https://opensource.org/licenses/MIT
    1111
    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`
     12Plugin extends default Wordpress authentication with the Digi-ID protocol.
     13User might one time open Users->Digi-ID and scan QR from his DigiByte App to have
     14ability to log in throw QR without login and password.
     15Requires "GMP PHP extension" (php-gmp module).
    2616
    2717Frequently Asked Questions
     
    3424How do I use Digi-ID?
    3525---
    36 Install a Digi-ID compatable wallet (currently DigiByte-Wallet or DigiByteGo)
     26Install a Digi-ID compatable application (DigiID Simple, Digibyte Wallet or DigiID/AntumID)
     27
     28What if authentication doesn't work?
     29---
     30Some 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  
    33 * @package Digi-ID Authentication
    44 * @author Taranov Sergey (Cept)
    5  * @version 1.0.4
     5 * @version 1.0.5
    66 */
    77/*
    88Plugin Name: Digi-ID Authentication
    99Description: Digi-ID Authentication, extends WordPress default authentication with the Digi-ID protocol
    10 Version: 1.0.4
     10Version: 1.0.5
    1111Author: Taranov Sergey (Cept), digicontributor
    1212Author URI: http://github.com/cept73
     
    1515namespace DigiIdAuthentication;
    1616if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    17 DEFINE("DIGIID_AUTHENTICATION_PLUGIN_VERSION", '1.0.4');
     17DEFINE("DIGIID_AUTHENTICATION_PLUGIN_VERSION", '1.0.5');
    1818
    1919    require_once ('required_classes.php');
    2020
    21     register_activation_hook( __FILE__, 'digiid_install' );
     21    register_activation_hook( __FILE__, '\DigiIdAuthentication\digiid_install' );
    2222
    2323    add_action( 'plugins_loaded', '\DigiIdAuthentication\digiid_update_db_check' );
Note: See TracChangeset for help on using the changeset viewer.