Be a Supporter!

CGI, help me!

  • 348 Views
  • 2 Replies
New Topic Respond to this Topic
Cheesemold
Cheesemold
  • Member since: Mar. 16, 2001
  • Offline.
Forum Stats
Member
Level 12
Blank Slate
CGI, help me! 2001-07-21 17:53:16 Reply

I need to set these weird file permissions, so what is 755 and 777, please answer it like "owner=read,write,execute...etc." because I'm using WS_FTP 5. thanks

Cheesemold
Cheesemold
  • Member since: Mar. 16, 2001
  • Offline.
Forum Stats
Member
Level 12
Blank Slate
Response to CGI, help me! 2001-07-21 18:08:18 Reply

wait, never mind, I figured it out :).

Pecos
Pecos
  • Member since: Dec. 29, 1999
  • Offline.
Forum Stats
Member
Level 03
Blank Slate
Response to CGI, help me! 2001-07-23 10:35:05 Reply

At 7/21/01 05:53 PM, cheesemold wrote: I need to set these weird file permissions, so what is 755 and 777, please answer it like "owner=read,write,execute...etc." because I'm using WS_FTP 5. thanks

xyz:

x = owner
y = group
z = public

1 = execute
2 = write
4 = read

Add them up to combine permissions like this:
read & write = 4 + 2 = 6
read & execute = 4 + 1 = 5
full control = 7

full control for owner and none for anyone else = 700
.
.
.