• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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