keygen template question

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

keygen template question

Post 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.
Admin
Site Admin
Posts: 2566
Joined: Mon Aug 21, 2006 8:19 pm
Location: Russia, E-burg
Contact:

Re: keygen template question

Post 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.
signal_integrity
Posts: 8
Joined: Wed Jul 28, 2021 3:27 pm

Re: keygen template question

Post by signal_integrity »

Looks good. Thank you, most appreciated.
Post Reply