the command is call "chmod"
works from a shell or from ftp
the basic command is
chmod ugo+rwx FILENAME
if you want to change
u user permissions
g group permissions
o other permissions
+ adds
r read access
w write access
x execute (or accessibility for a directory)
a webserver does not run as you, so you need to give it read access. if you are a member of its group you add the group permission, but it's probably "other"
as an alternative you can set permissions as an octal numer
chmod 644 FILENAME
would give you full permission, and your group and others read only
(chmod 755 DIRNAME for a directory)
I've used ws_ftp before, and it's pretty nice so it probably has this feature... but I have my limits and I don't think I'm going to install it just to test it for you :) try using a female avatar, that suckers me sometimes :)
but, to fix your immediate problem, you can log in using the regular windows ftp and set it that way
in an MSDOS window type
ftp HOSTNAME
user: yourusername
password: yourpassword
then, once you are logged in you will be in your login directory. if you want to see the directory listing
ls
dir
(either of those will work) if you need to change directories
cd DIR/NAMES
then
chmod 644 FILENAME
you can use wildcards, but you need to turn on "globbing" usually which I can't recall how to do
globbing on
glob on
set glob on
help
type some combination of the above, or search the web for ftp globbing and you will find how to do it.
The other thing you can do probably is add a file to you home directory and put a umask in it. then, when you log in it will set your default permissions to the umask. check with your ISP help for whether they support this and what file you should put it in or whether they will change it for you. Once you've identified where it goes, the other tricky part is that umasks are the binary opposite of chmod bitfields, so the umask number is not the same as the 644. I always have to look it up so that's what you'll have to do, but now that you know it's called a umask, searching will be pretty easy.