Possible Duplicate:
Code obfuscator for php?
How to protect my source code when deployed?
We're developing a PHP project which we intend to sell to end-users. We're licensing this project, so our end-users get a license to use the product (they do not own it).
Our problem is that we want to deploy the code at the customer's server, but we don't want the customer to be able to distribute it any further. With plain PHP code you could easily copy paste the code and give it to your neighbour ;), we would like to prevent that (a bit like preventing piracy). We could work with serials and a activation server, but since customers can easily edit PHP code that is not an option.
Do you've got any thoughts about how to secure this project, so the mean pirates won't be able to illegally resell our project.
Thanks in advance!