DNN module licensing options?

We plan to sell our DNN modules, but we want to make sure that each module is limited to installing ONE DNN (if the user wants to install the module several times, you need to purchase several modules).

What DNN licensing solutions can you recommend? I'm not looking for the cheapest option, but for the best.

The budget is $ 400.

+4
source share
3 answers

There is an open source codeplex system with which you could integrate.

Set key code in code

Install this, and then you will have to configure a control that you could use as the definition of the "edit" module in DNN, and which could have your logic for licensing your component.

But yes, it generates a key, and then when you authorize it, the web service checks it.

+2
source

I recommend the method used by Mandeeps.com, when you install the module, it will ask you to enter an activation key, and the verification created by the web service they developed will be carried out, so you can configure your business logic as you want, only with using this web service and customer table in your database

+1
source

License Master is a complete licensing solution for DNN module developers. You install it on your DNN site, like any other module. You integrate your own modules using the License Master using the Client API library. This library allows your module to interact with your license server and manage and verify license keys.

The License Master manages all aspects of the licensing process, including issue, registration, updating, renewal, and automatic notifications.

0
source

All Articles