keeB Posted September 2, 2008 Share Posted September 2, 2008 keeB, you're making the assumption that your clients know what's best for them Isn't it my job as a vendor to advise my clients when buying my software? As I said, if you're smart you lose nothing. Drop the price in lieu of a support contract, or increase the price for a 1-off. Win win. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-631717 Share on other sites More sharing options...
448191 Posted September 3, 2008 Share Posted September 3, 2008 If you're going to make a PHP extension, make one that includes a function for compiling a php string to opcodes (e.g. opcode_compile()), and a function that can execute a string containing opcodes (e.g. opcode_eval()). Should be a mayor performance booster. Now THAT I would have interest in. EDIT: Apparently, something already exists: http://nl.php.net/manual/en/intro.bcompiler.php. Supposedly not stable though. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-632910 Share on other sites More sharing options...
techcone Posted October 10, 2008 Share Posted October 10, 2008 @devreflex2004 Same problem , once client just ran away taking my script and not paying any money too Original Code -> Base64 Encode -> DES Encrypt -> Encrypted Code [Encryption Process] Encrypted Code -> DES Decrypt -> Base 64 Decode -> Original Code [Decryption Process] I will try to use this . Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-661796 Share on other sites More sharing options...
keeB Posted October 11, 2008 Share Posted October 11, 2008 How that ever happens is beyond me .. ;x Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-662493 Share on other sites More sharing options...
hamza Posted October 11, 2008 Share Posted October 11, 2008 Password protection on every file and folder.Is also gøod idea. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-662584 Share on other sites More sharing options...
o3d Posted October 14, 2008 Author Share Posted October 14, 2008 finally! i might have some good news for some here. i created a whole project to encrypt/decrypt php files. i currently use it on my production rig. some minor knowledge of php extension compiling is necessary so i would suggest getting the book "Extending And Embedding PHP". http://www.phphideit.org Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-664926 Share on other sites More sharing options...
corbin Posted October 17, 2008 Share Posted October 17, 2008 Hrmmm interesting. I plan on checking it out later. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-667719 Share on other sites More sharing options...
o3d Posted December 3, 2008 Author Share Posted December 3, 2008 Check out v2. It now includes a date expiry feature where you can specify a date (optional). When the encrypted script gets executed after this date the php extension will return with an expiry error. Php programmers will now have more control over their software. If you're not sure if a customer will pay, then give them e.g. a 1 month trial. I would appreciate any criticism and suggestions regarding this project. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-704716 Share on other sites More sharing options...
corbin Posted December 3, 2008 Share Posted December 3, 2008 Ooo nifty. I'll check it out later tonight. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-705466 Share on other sites More sharing options...
peterjc Posted February 7, 2009 Share Posted February 7, 2009 I am interested about the PHP hideit. I am using windows actually. can php hideit work on windows? I download the version 2 and use the hide.exe and may be encrypt successfully. But i think to run the file correctly, we need the php extension(.dll) right? How to compile the php extenstion? By the way. anyone here know how to compile php file into binary instead of encode or encrypt it? Thank Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-756611 Share on other sites More sharing options...
o3d Posted May 21, 2009 Author Share Posted May 21, 2009 I am interested about the PHP hideit. I am using windows actually. can php hideit work on windows? I download the version 2 and use the hide.exe and may be encrypt successfully. But i think to run the file correctly, we need the php extension(.dll) right? How to compile the php extenstion? By the way. anyone here know how to compile php file into binary instead of encode or encrypt it? Thank check this link http://forums.opensuse.org/programming-scripting/394951-compile-php-script-how.html as well as this http://en.wikipedia.org/wiki/PHP. It basically says that you can use zend's closed-source solution Zend optimizer (http://www.zend.com/products/guard/optimizer/) to compile your scripts so that some performance gains can be achieved. I however doubt that you will notice any performance enhancement over a few hundred nano seconds. But this might be a solution to your question. Wrt your question about the windows version, you'll need microsoft visual c or studio to build your extension. There are quite a few microsoft tutorials on the web. Let me know if you get it compiled so I can put it on the php hide it site Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-838671 Share on other sites More sharing options...
jcostello Posted May 27, 2009 Share Posted May 27, 2009 if its not open source' date=' its not trustworthy.[/quote'] I hope you realize the irony here. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-842930 Share on other sites More sharing options...
WatsonN Posted September 11, 2010 Share Posted September 11, 2010 I know this is an OLD topic but br0ken how exactly did you construct a self-destruct sequence in your code? That sounds interesting. Link to comment https://forums.phpfreaks.com/topic/38430-protect-php-source-code/page/2/#findComment-1109965 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.