Forum Moderators: phranque
How can I change the file permissions for one of these domains? I'm using Putty to SSH my server (using the ip address) and logging in using my general username and password. What exactly is the command to change the root file file permissions for just one domain.
When I only have one domain and one ip address, I would type:
CHMOD -a 744
or CHMOD 755 <filename>
But I'm confused now with the multiple domains. Anybody know what exactly I need to type when I logged into my server?
Then do
chmod 755 example.com -R
This makes example.com and all files and directories under it writeable and executable by the owner and executable by everyone else.
To change the owner do similarly
chmod uname.uname example.com -R
However, if your goal is really to let the client edit themselves you might want to create a new user account and set up the domains from within that account. They they would have their own cpanel account / ftp to log in (maybe?). I don't use Plesk so am not sure how that works.