Page 1 of 1

keygen template question

Posted: Sun Aug 01, 2021 9:46 pm
by signal_integrity
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.

Re: keygen template question

Posted: Mon Aug 02, 2021 5:25 am
by Admin
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.

Re: keygen template question

Posted: Mon Aug 02, 2021 2:24 pm
by signal_integrity
Looks good. Thank you, most appreciated.