Skip to content

License activation

After successful installation, the plug-in license has to be activated using PL/SQL code. The instructions describe activating the plug-in United Codes Rich Text Editor Pro in the Trial Mode.

The license activation process requires the plug-in license API key and plug-in name. Both information can be found in the United Codes Plug-ins Pro portal.

  1. Log into Plug-ins Pro Portal

image-20230303125606212

  1. Scroll the dashboard page to the section Free Trials

  2. Click the Rich Text Editor Pro card

image-20230303130425129

  1. The plug-in name and the API key are presented in opened modal page. These values are required to activate the plug-in in the next steps

image-20230303130536548

  1. Proceed to the next step Activate license using PL/SQL code.

Activating the plug-in license requires executing PL/SQL code in Oracle APEX SQL Workshop / SQL Commands. The plug-in can be activated using two scenarios:

  1. When Oracle APEX schema has access to the internet
  2. When Oracle APEX schema has no access to the internet

When the Oracle APEX schema in which the plug-in is installed has access to the internet, the activation process requires only executing PL/SQL code in Oracle APEX SQL Workshop.

  1. Go to SQL Workshop / SQL Commands
  2. Run the auto_license procedure
begin
uc_pluginspro.auto_license(
p_plugin => 'PLUGIN_NAME', -- the plug-in name presented in the Plug-ins Pro dashboard modal
p_api_key => 'YOUR_API_KEY' -- the plug-in API key presented in the Plug-ins Pro dashboard modal
);
end;

In the result of executing the code, you should see the successful message:

Plug-ins Pro license saved for plug-in: UNITEDCODES_FROALA_RTE.

See the example screenshot below.

image-20230303132308456

The plug-in has been activated and is ready to use. The successful activation can be checked in the Plug-ins Pro portal. See the screenshot below.

image-20230303154127270


When the Oracle APEX schema in which the plug-in is installed has no access to the internet, the activation process requires executing PL/SQL code and generating the plug-in license in the Plug-ins Pro portal.

  1. Go to SQL Workshop / SQL Commands
  2. Run the manual_license procedure
begin
uc_pluginspro.manual_license(
p_plugin => 'PLUGIN_NAME', -- the plug-in name presented in the Plug-ins Pro dashboard modal
p_api_key => 'YOUR_API_KEY' -- the plug-in API key presented in the Plug-ins Pro dashboard modal
);
end;

You should see a message with key value. The key is needed to generate a license key in the Plug-ins Pro portal.

image-20230303152144565

Copy the printed key value and proceed to the next step.

Generate license key in Plug-ins Pro Portal

Section titled “Generate license key in Plug-ins Pro Portal”
  1. Go to the Plug-ins Pro portal dashboard

  2. Click on the Rich Text Editor Pro card

image-20230303174802664

  1. Click the button Generate license

image-20230303152259726

  1. Paste the copied key valuein the new modal window.

  2. Click the button Generate license

image-20230303152410134

  1. In the result, the plug-in license key is generated

image-20230303152451555

  1. Copy the generated license key and proceed to the next step.
  1. Go back to APEX SQL Commands
  2. Execute the procedure manual_license with parameter p_license_key set to copied license key
begin
uc_pluginspro.manual_license(
p_plugin => 'PLUGIN_NAME', -- the plug-in name presented in the Plug-ins Pro Portal
p_api_key => 'YOUR_API_KEY', -- the plug-in API key presented in the Plug-ins Pro Portal
p_license_key => 'GENERATED_LICENSE_KEY' -- license key copied from Plug-ins Pro Portal
);
end;

In the result of executing the code, you should see the successful message:

Plug-ins Pro license saved for plug-in: UNITEDCODES_FROALA_RTE

image-20230303152613997

The plug-in has been activated and is ready to use. The successful activation can be checked in the Plug-ins Pro portal. See the screenshot below.

image-20230303154127270