PHP Protect version 1.2 - Online PHP Obfuscator + Protector Online beta: http://www.scriptbaba.com/php-protect Has now code that makes file unusable when editted. Except hex editors, whatever editor you use to edit the file and save, you get file corrupted. But yet file is perfectly executed on php. All version supported. Secondly, the big update is now EMBEDDED TAGS are supported, example file with embedded tags might be: Better protection of your code. Next update will be. Shuffling of function names, constants, and selective variables, which will make code really hard to break down. And finally we will have Windows XP/Vista applciation when all features are done. Please test and let me know your results. regards
I just want to inform you of one thing in the php ini file: ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. short_open_tag = Off Code (markup): The <?php tag is recognized by all php servers but the <? tag is not always supported (if short_open_tag is set to off). Not all admins can access those settings to change them, and some may not even know that <? is not always supported. For compatibility you might want to consider making the output file start with <?php. I noticed you fixed the other problem I proposed and I thought maybe you misunderstood the above suggestion when I briefly mentioned it before so I just wanted to bring it to your attention a second time. You can use this suggestion or not. Everything else is looking great. Your tool could be really helpful in protecting intellectual property.