PHP Deployment!

A

Anonymous

Guest
It is possible, but you have to encrypt the php scripts, and use a decrypting engine with your webserver.
Very expensive, the cheapest one I saw is the ION, and it's 200 a license.
 
Is the software being hosted in the building on an Intranet? OR can you host it remotely and just filter out IPs so only their static IP can access it.

Are you worried about them seeing the html source or just the PHP source?

Why is seeing the source such an issue? I would argue that if they have paid for a license and own the hardware that is running the system they have the right to read the source.

Lastly, if you are installing the hardware that will be hosting the PHP you can lock down access so they can't get to the source. They could still do "View Source" on the site itself but it is pointless to try to protect the HTML.
 
You could try obfuscating the code. It would make it difficult to reverse engineer and modify and it maintains the execution speed.

As far as redistribution prevention, you could use a licensing server to check the license of the software on your own server to prevent resale of the product after installation.

Other than that you should just make sure that you have an air tight EULA so you can sue the pants off them when they try to step out of line. Redistribution and Reproduction are against general copyright law, in America at least.
 
Back
Top