Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding Proprietory Code

Status
Not open for further replies.

TheFenom

Programmer
Jan 2, 2004
2
ZA
Hi all,

I'm starting a system which will be installed across many company servers and not hosted on one particular server. I therfore want to prohibit access to some of the proprietory code (ala Microsoft :)) ). I've started experimenting with COM, is there any other way to do this? Also does anyone know where I can get more information/resources regarding COM programming in PHP.
 
What kind of proprietary code? If you're talking about proprietary PHP code, you can use Zend Encoder to make your PHP code unreadable but still executable.


Just keep intellectual property concerns in mind. If you are writing this as an employee of the company or under contract to the company, the code belongs to the company, at least in the U.S. If this is the case, make sure that you haven't closed off access to the source code.


Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Hey sleipnir214,

That Zend Encoder looks nice but boy is it expensive. I guess it is worth it if you really need to protect your code. It just hurst to look at that price.

- Zych
 
There are open-source and less-expensive close-source products that can do the similar things. Check out:[ul][li]PHP Encoder[/li][li]Turck MMCache[/li][/ul]I have no personal experience with either product.

These products will require that a component be installed on the web server for the encoded scripts to run. But Zend Encoder requires this, too.


Again, it's important to make sure you understand the meaning of the word "proprietary" as it applies to this application. If you encode a script that the owner of that intellectual property cannot get to, you could be in violation of law. Much of protection of the source code in a portal or intranet website can also be accomplished by setting sufficiently-paranoid permissions on the server.


Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top