Index:
[thread]
[date]
[subject]
[author]
From: Tim Bain <tpb2@duke.edu>
To :
Date: Sat, 10 Apr 1999 10:55:34 -0400
Re: more space
Michael Abernethy wrote:
> in order to make more space on my web page account for our game, i made a
> link from my public_html folder into my cps extra space directory.
> It lets me look at the content of the folders in a browser, but when I
> try to look at a .gif file or .java file, it says there is a 403 error,
> permission denied on this server.
> How do i give permission to everyone in this folder, so that the link to
> the cps xtra space can be like a normal html folder, one that everyone
> can look at?
Mike, you need to set the access controls so that
everyone can read the files in the directory. To do
this, first run the command:
fs listacl .
This will print up the list of groups and users who have
some sort of permission to work with the files in the
directory.
To change the rights that a group or a user has, type:
fs setacl . *userid/groupid* *rights*
In this case, you would want to give the group anyuser
the permission to look at and read the stuff in your
directory, so you would say:
fs setacl . anyuser rl
or
fs setacl . anyuser read
If you want to give someone no rights, type:
fs setacl . *userid/groupid* none
That should cover it...
Tim
Index:
[thread]
[date]
[subject]
[author]