up vote 2 down vote favorite
1
share [g+] share [fb]

What is the best way of protecting my source code from being distributed without permission.

I've thought of perhaps moving my source to another server. Also toyed with the idea of obfuscating my code, but this might make it a pain to alter at a later date.

Has anyone any better ideas?

link|improve this question

78% accept rate
8  
Not worthy of a comment, but obfuscation doesn't solve anything in my opinion. Security by obscurity only keeps the junior hacks away. – Randolph West Oct 19 '09 at 10:38
What do you mean by "moving source to another server" and what would you like to achieve by doing this? – Adam Byrtek Oct 19 '09 at 10:55
Some people have access to the current server, If I was to move it to another server they would have no access. – sfusion Oct 19 '09 at 14:25
Is your code THAT awesome for you to keep it to yourself instead of open-sourcing it? Because if it is, you might as well deploy it on a trusted server and earn revenue from it. – Randell Oct 20 '09 at 9:49
feedback

8 Answers

You cant really stop people if they really want to steal your code, you can only make it harder. Even without the source they can still study and copy your ideas to some extent. The nice source just makes it easier as they have a starting point.

link|improve this answer
feedback

Use Zend, and keep hopes that byte code can't be disassembled into readable source code..

link|improve this answer
3  
If there's a will, there's a way. – Chris Charabaruk Oct 19 '09 at 10:55
feedback

If you can host the software you can keep it under-wraps. Any software you distribute must be able to unencrypt itself so the OS can run it. At that point, it can often be reverse-engineered, de-compiled, etc..

The other alternative is to write really bad code or an uninteresting program. In that cases no one will want to copy it, if you you make it available to download for free. For example of such projects, see the last page on Ohloh.

link|improve this answer
Excellent point, now - for the first time - I understand why the Java distribution model was based on the code staying on a server and fee for service being the method of distribution. Should still work even though Java is open for discussion. That's an idea I will keep in mind as I thought about this for years and decided the only solution was to have an operative that runs a disk on target machine and build in detectors. Any ( like you say ) – Nicholas Jordan Oct 20 '09 at 6:48
feedback

There is a PHP Compiler called PHC. It's still in early development but it has very talented people on board.

link|improve this answer
feedback

Another popular one is ioncube. Requires the ioncube software to be installed on your server though. It's also quite expensive at $199 for the standalone version.

I've just noticed their online version may be much cheaper (although having never used it I'm not sure how expensive it would eventually work out)

See here for cost: http://www.ioncube.com/pricing.php

link|improve this answer
feedback

You could check this list of php obfuscation solutions.

link|improve this answer
feedback

Maybe the new Phar file format is a cheap solution?

link|improve this answer
feedback

You can try myows. It is free and it helps you protect your code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.