Main Menu
Sub Menu

License Manager

Here you can manage licensing for your package. You can view all license along with allocated domain, edit any existing license, activate or deactivate any license here.

digital product license manager

Customers can generate and copy license key for their purchased items from order details page:

generate license key

You also can add license key for a product from here:

add new license key

Integration:

Integration of licensing system is real easy. You can find the license server url and other required parameterto validate license from here:

Now, using the above pamareters, here is an example request:
example request

And the code to send license validation request using PHP:

<?php
function validate_license($licenseKey){
   $license_server = "http://localhost/wpdmpro/";
   $domain = $_SERVER['HTTP_HOST']; // domain name or IP
   $productId = 'PRODUCT_CODE'; // Your Product Code, if you don't add any product code your prouduct, you also can skip it here
   $ch = curl_init();

   curl_setopt($ch, CURLOPT_URL,$license_server); 
   curl_setopt($ch, CURLOPT_POST, 1);
   curl_setopt($ch, CURLOPT_POSTFIELDS, "wpdmLicense=validate&domain={$domain}&productId={$productId}&licenseKey={$licenseKey}");
   // receive server response ...
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
   $server_output = curl_exec ($ch);
   curl_close ($ch);
   return json_decode($server_output);
}
$response = validate_license('1234-1234-1234-1234');
if($response->status == 'VALID') {
 // License is valid
}
if($response->status == 'INVALID') {
 // License is invalid
}
if($response->status == 'EXPIRED') {
 // License is expired
}

?>

So, what you need to do is, post the following data to your license server.

Valid Response:

{
  "status": "VALID",
  "expire_date": "0",
  "activation_date": "1477958400"
}

Error Response:

{
  "status": "INVALID | EXPIRED",
  "error" : "ERROR_MESSAGE"
  "expire_date": "1477958400",
  "activation_date": "1477958400"
}
Last updated on Mar 22, 2021

Need More Clarification?

For any technical issue, if you are already using pro version please post in pro forum and free version users please post in free forum. Otherwise, if you have any pre-sale or order related query please contact live chat support team. For technical support.

Need Customization?

If you need additional customization on WordPress Download Manager or any type of custom support on WordPress you may contact our customization service.