[PHP-DB] how to hide source code??

2002-08-29 Thread Smita Manohar
hii im using php script with mysql. i want to hide the script from the admin or from the person who has privileges to access all the data. bcos i use ftp to upload the files. and i don't want anyone should be able to view the source. is it possible to do so? thnx and regds, smita.

Re: [PHP-DB] how to hide source code??

2002-08-29 Thread Adam Williams
set you to owner of the script and then chmod 700 it Adam On Thu, 29 Aug 2002, Smita Manohar wrote: hii im using php script with mysql. i want to hide the script from the admin or from the person who has privileges to access all the data. bcos i use ftp to upload

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Ryan Jameson (USA)
Wouldn't that make php unable to read it as well? Then it is useless as well. Ryan -Original Message- From: Adam Williams [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:00 PM To: Smita Manohar Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] how to hide source code?? set you

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Adam Williams
, 2002 1:00 PM To: Smita Manohar Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] how to hide source code?? set you to owner of the script and then chmod 700 it Adam On Thu, 29 Aug 2002, Smita Manohar wrote: hii im using php script with mysql. i want to hide the script

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Ryan Jameson (USA)
- From: Adam Williams [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:06 PM To: Ryan Jameson (USA) Cc: [EMAIL PROTECTED] Subject: RE: [PHP-DB] how to hide source code?? oh yeah duh me, set it 701 Adam On Thu, 29 Aug 2002, Ryan Jameson (USA) wrote: Wouldn't

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Mateus Cordeiro Inssa
Em Qui, 2002-08-29 às 16:05, Adam Williams escreveu: oh yeah duh me, set it 701 Adam On Thu, 29 Aug 2002, Ryan Jameson (USA) wrote: Wouldn't that make php unable to read it as well? Then it is useless as well. Oh, please, setting x bit will permit what ? PHP

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Ryan Jameson (USA)
a month there would be a downloadable decrypter somewhere to be found. :-\ Ryan -Original Message- From: Mateus Cordeiro Inssa [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:26 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] how to hide source code?? Em Qui, 2002-08-29 às

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Hutchins, Richard
-Original Message- From: Adam Williams [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 1:06 PM To: Ryan Jameson (USA) Cc: [EMAIL PROTECTED] Subject: RE: [PHP-DB] how to hide source code?? oh yeah duh me, set it 701 Adam On Thu, 29 Aug 2002, Ryan Jameson (USA

FW: [PHP-DB] how to hide source code??

2002-08-29 Thread Peter Lovatt
--- -Original Message- From: Smita Manohar [mailto:[EMAIL PROTECTED]] Sent: 29 August 2002 18:59 To: [EMAIL PROTECTED] Subject: [PHP-DB] how to hide source code?? hii im using php script with mysql. i want to hide the script from the admin or from the person who has privileges

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Adam Williams
Apache can execute a file without reading it. Don't believe me? Make a file 701 and then open it in apache. Adam On 29 Aug 2002, Mateus Cordeiro Inssa wrote: Em Qui, 2002-08-29 às 16:05, Adam Williams escreveu: oh yeah duh me, set it 701

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Mateus Cordeiro Inssa
Em Qui, 2002-08-29 às 17:48, Adam Williams escreveu: Apache can execute a file without reading it. Don't believe me? Make a file 701 and then open it in apache. Oh, yes, so can apache bypass the kernel ? I don't think so, unless it is running as root or the file gets owned by the same

RE: [PHP-DB] how to hide source code??

2002-08-29 Thread Adam Williams
I encourage you to create a file whatever.html and set it 701 and then look at it with a browsing by connecting to your webserver. http://server.com/~user/whatever.html will be displayed even though it is 701. I've done it many times. Adam On 29 Aug 2002, Mateus