Re: [PHP] Changing permissions

2003-10-19 Thread Eugene Lee
On Sun, Oct 19, 2003 at 11:58:56PM +1000, Wang Feng wrote: : : I don't understand why the decimal 18 is greater than a string like "large" : in the ascii code? When I run the following code, the decimal 18 is stored : in the $third, not the $first. I reckond decimal 18 should be stored into : the

Re: [PHP] Changing permissions

2003-10-19 Thread Eugene Lee
On Sun, Oct 19, 2003 at 02:37:27PM -0400, zavaboy wrote: : "Eugene Lee" <[EMAIL PROTECTED]> wrote: : > On Sat, Oct 18, 2003 at 10:28:49PM -0400, zavaboy wrote: : > : : > : Ok, I have a installer that only works if the directory that's : > : being installed to has public writing permissions. I tried

Re: [PHP] Changing permissions

2003-10-19 Thread zavaboy
How do I run my installer as root? "Eugene Lee" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Sat, Oct 18, 2003 at 10:28:49PM -0400, zavaboy wrote: > : > : Ok, I have a installer that only works if the directory that's being > : installed to has public writing permissions. I tri

Re: [PHP] Changing permissions

2003-10-19 Thread Eugene Lee
On Sat, Oct 18, 2003 at 10:28:49PM -0400, zavaboy wrote: : : Ok, I have a installer that only works if the directory that's being : installed to has public writing permissions. I tried chmod() on the : directory, but I get a error. How can I make it so my installer can : write in a directory with

[PHP] Changing permissions

2003-10-18 Thread zavaboy
Ok, I have a installer that only works if the directory that's being installed to has public writing permissions. I tried chmod() on the directory, but I get a error. How can I make it so my installer can write in a directory with the incorrect writing permissions? Thanks! -- - Zavaboy [EMAIL P

Re: [PHP] Changing permissions with mkdir?

2003-01-12 Thread Jason Wong
On Sunday 12 January 2003 12:56, Ben Cheng wrote: > When I run mkdir("path to new dir", 0777); I get a directory that has > owner and group set to "nobody" and drwxr-xr-x permission. How do I > get the permission to be set to drwxrwxrwx? umask() -- Jason Wong -> Gremlins Associates -> www.greml

RE: [PHP] Changing permissions with mkdir?

2003-01-11 Thread Timothy Hitchens \(HiTCHO\)
6 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Changing permissions with mkdir? > > > When I run mkdir("path to new dir", 0777); I get a directory that has > owner and group set to "nobody" and drwxr-xr-x permission. How do I > get the permission to be set