alex1985 0 Report post Posted April 20, 2008 you can also try obfuscating your code and make it unreadable to everyone except yourself....So, how can I do it?! Share this post Link to post Share on other sites
roooss 0 Report post Posted April 20, 2008 (edited) take a look at something like thishttps://www.raizlabs.com/contact/support/if youre gonna do it i advise you read up a bit about it first because otehrwise see youre code obfuscation might give you a heart attack! lolHere is a sample of what obfuscated code looks like...function FC7321B391B6EF18F0711B835402E91D1($RE91192A00FF990477EE414AD5D708F08) { global $db_prefix; global $R695CD54D1F9CB31C11C71AF5EF74FDDB; $R9E9F3EDB7A84E99A0567F313F4EAC1BA = $RE91192A00FF990477EE414AD5D708F08; $R37A721F3B04CA577A7730084048F2BE3 = array_keys($R695CD54D1F9CB31C11C71AF5EF74FDDB); foreach($R37A721F3B04CA577A7730084048F2BE3 as $R90E8291866BD6CB7ED5089CE7E833D11) { $R9E9F3EDB7A84E99A0567F313F4EAC1BA = str_replace($R90E8291866BD6CB7ED5089CE7E833D11, $db_prefix . $R90E8291866BD6CB7ED5089CE7E833D11 , $R9E9F3EDB7A84E99A0567F313F4EAC1BA); } return $R9E9F3EDB7A84E99A0567F313F4EAC1BA;}.heres another kewl tutorial to hide the fact that your using php altogether! take a peekhttps://forums.phpfreaks.com/index.php/c,186675.0.html Edited April 20, 2008 by roooss (see edit history) Share this post Link to post Share on other sites
alex1985 0 Report post Posted April 20, 2008 Thanks. That should help me a lot!!! Share this post Link to post Share on other sites
roooss 0 Report post Posted April 20, 2008 no problem glad i can help if u employ both php hiding and obfuscation not only do you get unreadable code but unreadle code with no sign of what language it is either! making it very very difficult for a would be script thief Share this post Link to post Share on other sites
Galahad 0 Report post Posted April 21, 2008 But again, what's the point of obfuscating hos code, if no one can see his PHP source? As Al3x said, PHP is processed by the php parser, and it;s output is sent to a web browser... Internet is kind of a "open source", and it's contents are available to anyone who wants to see them... Even thsi forum can't protect it;s contents, only it's source code, that makes it work... And there's nothing you can do to protect your output, and I actually don't see any reason to... JavaScript protection scripts are stupid and pointless, and only annoy people...I figure you want to hide your URL page addresses, so people don't see domain.com/page1.php, domain.com/page2.php etc., but only to show domain.com for every page...As people upstairs suggested, look at Apaches mod_rewrite, and the use of .htaccess file...Oh, and another thing... Try to write longer posts, with a bit more detail what you want done, because it's hard for us to guess what you want done... People here take time to help you, the leas you can do is put some time into writing your posts, to help them help you, and anyone else having the same or similar problem... Share this post Link to post Share on other sites
alex1985 0 Report post Posted April 21, 2008 Thanks to all of you, it's really lucid right now. Share this post Link to post Share on other sites