2
I need to deploy a system I created in PHP, but I would like to protect my system somehow.
It is possible to encrypt my system (PHP) so that more users do not have access to the source code and end up making their own changes and customizations?
Note: I do not want to avoid copies of files, but to encrypt the contents of PHP files and keep them working on the site, making it difficult to change only within the PHP file.
@bigown I’m not trying to ban copies, I’m talking about Encryption of content inside PHP files, to avoid undesirable changes.
– Roberto Valentim
"do not have access to the source code" you spoke with all the letters
– Maniero
There is a tool called Zend Guard, which allows you to encrypt your entire project. We use it on one of the clients here in the company. https://www.youtube.com/watch?t=141&v=dyKvplwwej0
– Ivan Ferrer
Also has an ionCube call.
– Ivan Ferrer
And you have this tutorial if you don’t want to use a program: https://www.youtube.com/watch?v=qvpao46olgg
– Ivan Ferrer
I used Ioncube in a project, it works well and I did not find any tool that reverses the encoding, the bad is the price
– Pedro Sanção