jack5100nv Posted May 14, 2008 Share Posted May 14, 2008 I am writing a script and would like to have a Powered By message at the bottom of my script. Does anyone know how can I make it impossible or hard to replace? Any help will be greatly appreciated, Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/105670-powered-by-hard-to-replace/ Share on other sites More sharing options...
MadTechie Posted May 15, 2008 Share Posted May 15, 2008 We're really need more info on your script.. you could just has echo "Powered By ...etc.." in an encoded file or maybe try something like this. <?php $footer = "Powered By etc"; $crc = "ABC123"; //MD5 hash if(!isset($footer) || md5($footer) != $crc) { die("error"); } ?> But if you copyright the system or something. Quote Link to comment https://forums.phpfreaks.com/topic/105670-powered-by-hard-to-replace/#findComment-541416 Share on other sites More sharing options...
DeanWhitehouse Posted May 15, 2008 Share Posted May 15, 2008 or find a free encoder on the net, and encoded the bit with that , my advice is that you encoded a bit more ,something that is required for the page to work, or something that will display an error if it is not there Quote Link to comment https://forums.phpfreaks.com/topic/105670-powered-by-hard-to-replace/#findComment-541420 Share on other sites More sharing options...
jack5100nv Posted May 16, 2008 Author Share Posted May 16, 2008 Thanks for your help guys. If I encode, is it possible to decode it? Also, do you know of any good free encoder? Quote Link to comment https://forums.phpfreaks.com/topic/105670-powered-by-hard-to-replace/#findComment-543035 Share on other sites More sharing options...
DeanWhitehouse Posted May 16, 2008 Share Posted May 16, 2008 no you can't decode once encoded, you can just use md5(); or search google, for free php encoder Quote Link to comment https://forums.phpfreaks.com/topic/105670-powered-by-hard-to-replace/#findComment-543037 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.