1. Download ARaction wordpress plugin from here (LINK COMING SOON).
  2. Log in to your WordPress installation with an admin user.
  3. Go to Plugins -> Add new.
  4. Select the zip file from step one and upload it to your wordpress installation.
  5. Activate the plugin.
  6. Check if PHP HTTP Authorization Header is enabled.
    (Most of the shared hosting has disabled the HTTP Authorization Header by default.)
    Therefore
    – log in to your webspace via FTP
    – search for the .httaccess file in the root folder of your wordpress installation
    – To enable this option you’ll need to edit your .htaccess file adding the following lines to it:

    RewriteCond %{HTTP:Authorization} ^(.*)
    RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
    SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
  7. To make sure that your ARaction plugin can communicate with our license server, our plugin needs a secret key to sign the token. This secret key must be unique and never revealed:
    – log in to your webspace via FTP
    – search for the wp-config.php file in your wordpress installation
    – To add the secret key, edit your wp-config.php file and add a new constant called JWT_AUTH_SECRET_KEY:

    define('JWT_AUTH_SECRET_KEY', 'your-top-secrect-key');

    – Replace ‘your-top-secrect-key’ by a string from here https://api.wordpress.org/secret-key/1.1/salt/