Guys/Gals I have made a website but now I want to encode the script so that no one can copy.
I'm using PHP, JavaScript and HTML in each page of my website. So how do I encrypt each and every page?
Thank You.
Guys/Gals I have made a website but now I want to encode the script so that no one can copy. I'm using PHP, JavaScript and HTML in each page of my website. So how do I encrypt each and every page? Thank You. |
|||||||||||||
|
Neither html nor javascript can be encrypted, else the browsers would not be able to interprete it and your visitors would not be able to view your site. Dot. End. Compression tools may boost performance a little but will not really help against copyright infringement. Your php-programs generate html, your visitors will always be able to see your html, but if your server is configured properly no one should ever see your php. |
|||
|
PHPNo need to encrypt - noone will ever see it (unless your site has security problems). JavaScriptYou can pack it. Can be reversed. HTMLYou can remove all whitespace. This is problematic with It is also very ease to export the formatted DOM structure that is the end result of your serialised mess. The Most Important PartObfuscate to make pages load faster - not to stop people from stealing your code/markup. If your code is really worth stealing (which I doubt it, no offense), then people will get it. |
|||||||||||||||||||
|
Just get comfortable with the idea that putting something on the web is to open it to the world. Cost in attempting to stop duplication of the stuff you've already decided to make publicly available: $your hourly rate x hours == ?? Cost to stop worrying about something that doesn't actually cost you anything: zero. winner. (And to head off another question you're inevitably going to ask at some point in future - Don't attempt to disable right-clicks. It just annoys everyone and doesn't achieve anything.) |
|||
|
Try using Javascript Obfuscator for your javascripts. It will not hide you script but it protects JavaScript code from stealing and shrinks size. |
|||||
|
if you do a google on "html encryption" you'll get a lot of hits. http://www.developingwebs.net/tools/htmlencrypter.php The question I have is why you would want to do this? You're going to have a performance hit for what gain? You can also do the same for javascript but unless your html or javascript has organisational sensitive data then... And if they do then perhaps that's not the best place for it. |
|||
|
Actually one way to do it is to use XML + XSLT, it's extremely difficult for a lay-person to figure out what is going on, even more difficult for them to get your sauce code. |
|||||||||||
|
search google for ioncube http://www.ioncube.com/html_encoder.php This converts the html into gibberish. Stealing your html becomes difficult. Nobody's html code is worth stealing anyways. This is only for self satisfaction. |
|||