How to encrypt PHP code? [duplicate]

0

I created a system using the MVC (model-view-controller) standard in PHP and MySQL database, and I would like to encrypt the code, at least the main parts, before leaving my computer, to prevent it from being copied and used without my permission.

    
asked by anonymous 21.05.2017 / 22:23

1 answer

0

PHP has the Blenc - BLowfish ENCoder for PHP source scripts to encrypt the source code.

You will need access to the server to configure it. But be aware that your code can still be decrypted. From the moment you detect the intrusion on your server, you get some time to recompile your system with new keys and passwords.

    
22.05.2017 / 14:54