keygen template question

Issues related to WebLM
signal_integrity
Posts: 6
Joined: Wed Jul 28, 2021 3:27 pm

keygen template question

Postby signal_integrity » Sun Aug 01, 2021 9:46 pm

VMProtect and the web license manager look like an excellent products. So far, everything looks like it will work for my products. I just need to nail down a couple of odd questions.

I see that there are four keygen templates for payment processors. Can I create a template for another payment processors and add it to the drop down list? I may have to use FastSpring in the future as one online listing site requires FastSpring integration. If possible, how much work is involved? Are there instructions for this sort of work in the documentation when I buy the product?

Thank you for your help.

Admin
Site Admin
Posts: 2378
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: keygen template question

Postby Admin » Mon Aug 02, 2021 5:25 am

Can I create a template for another payment processors and add it to the drop down list? I may have to use FastSpring in the future as one online listing site requires FastSpring integration. If possible, how much work is involved? Are there instructions for this sort of work in the documentation when I buy the product?

You can do it by yourself after purchasing WebLM. It contains full PHP sources. For example the following code contains payment processors and keys for parsing a template:

Code: Select all

<?php

$KEYGEN_KEYS = array(
   "PayPro" => array(
      "customeremail" => "{CUSTOMER_EMAIL}",
      "customername" => "{CUSTOMER_NAME}",
      "companyname" => "{COMPANY_NAME}",
      "quantity" => "{PRODUCT_QUANTITY}",
      "orderref" => "{ORDER_ID}"
   ),
   "Plimus" => array(
      "customeremail" => "<CUSTOMER_EMAIL>",
      "customername" => "<CUSTOMER_NAME>",
      "companyname" => "<COMPANY_NAME>",
      "quantity" => "<QUANTITY>",
      "orderref" => "<ORDER_ID>"
   ),
   "Avangate" => array(
      "type" => "avangate"
   ),
   "MyCommerce" => array(
      "type" => "mycommerce&"
   )
);

?>


You can add any additional processors here.

signal_integrity
Posts: 6
Joined: Wed Jul 28, 2021 3:27 pm

Re: keygen template question

Postby signal_integrity » Mon Aug 02, 2021 2:24 pm

Looks good. Thank you, most appreciated.