E
|
electromotive 7/8/2012 |
Hi, if I wanted to sell a script created with PHPR how could I avoid that a client can pass it to another for free?In practice how to protect it to make a single copy only usable by those who had purchased? Thanks for any suggestions
|
![]() |
Sergey Kornilov admin 7/9/2012 |
Theoretically it's possible to protect PHP scripts so they can only run on specific web host. This will require a few extra steps for you and for your customers.
|
C
|
cgphp 7/9/2012 |
2. You need to add additional code that will connect to your own web server, validate if license is correct and that domain name matches the one on file. This will prevent client from using your code on more than one server. If client needs to move script to another web server they need to logon to your website and change the authorized domain name. In other words you need to roll out your own license solution which may not worth the effort.
|