• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Group change from psacln to apache ?

C

chaloupe

Guest
I have big trouble in my Files Manager for my clients.

Group change from psacln to apache and by doin' that, we cannot go modify anything in the folder, not even show what's inside the folder.

permission also change to rwx --- ---

What could we do to change those group back so we can edit and what is causing this situation.

tx
 
User change to apache too!

the user and group change to apache. not only the group.
 
SSH into the server, change directory to the proper place, then use 'chown' command:
Code:
chown -R :psacln name-of-directory
Notice the colon before the word psacln. This will leave the UID the same. If you want to change that as well, then do:
Code:
chown -R ftpusername:psacln name-of-directory
Where 'ftpusername' is the name of the domain's ftp user you defined.

To change the permissions, use the chmod command:
Code:
chmod -R value name-of-directory
Where value can be whatever (like 664, 700, 750, 755, etc) or if you prefer to use the symbolic, use something like:
Code:
chmod -R ugo +rw name-of-directory
 
Back
Top