Anraiki
Anraiki

Reputation: 796

How can I protect my script from being "free"?

I want to divide my web application into two parts. One part is free, like a demo for people to use. The other part is not; a extension that is paid for but requires authorization and a license to use.

My idea is to sell the extension without having it being compromised. Once the extension is sold, the buyer can't upload it to some other site and make it "free" for other people to use. Thus the extension would check a database from another domain to authorize the use of its script.

How can I achieve this?

Upvotes: 0

Views: 190

Answers (2)

OcuS
OcuS

Reputation: 5310

Use a professional solution like Zend Guard.

Upvotes: 0

Ryan Nowakowski
Ryan Nowakowski

Reputation: 830

Give the free script away for users to run on their own site. Run the licensed non-free script only on your server and hook them together using an API over HTTP.

Upvotes: 6

Related Questions