[PHP] PHP Script Encryption!!!!

2003-02-10 Thread Pankaj Naug
hiii!! 1. can anyone help me out with php script encryption.. are there any freeware which i can use to encrypt my php scripts. 2. have anybody has any ready made code which take's a directory path and uses linux shell command to execute them??? actually i want to use a shell command which

Re: [PHP] PHP Script Encryption!!!!

2003-02-10 Thread Jason Sheets
Hello Pankaj, With PHP you use libmcrypt and the PHP mcrypt functions to do encryption. Basically you need to install libmcrypt (you do not need mcrypt, just libmcrypt) and then add --with-mcrypt=/path/to/install (this is usually /usr/local) to your PHP configuration line. You can check to see i

Re: [PHP] PHP Script Encryption!!!!

2003-02-10 Thread Adam Voigt
Just incase you meant encrypt your php scripts and not encrypt with your php scripts, check out: http://www.ioncube.com/ Not free, but very cheap (they have a online encoder that charges by the amount of code, a simple app is less then $5.00). On Mon, 2003-02-10 at 10:04, Jason Sheet