How to Set File and Directory Access Permissions in Plesk

How to Set File and Directory Access Permissions in Plesk In this article Hostripples will show you how to Set File and Directory Access Permissions in Plesk. Please follow the step-by-step. Setting File and Directory Access Permissions First – To review or change the permissions set for files and directories on Linux systems: Step 1 : Go to […]

Mass ownership and permission change – Linux – Find command

How to change the permission of files and folders? Use chmod along with -exec to change the permissions. # find ./ -type f -exec chmod 777 {} \; this command changes all files permission to 777 in PWD. Use “-type d” for directory! How to change ownership? That’s simple. Use the chown command within the […]

Joomla permission in plesx

When Joomla admin section shows the all files unwritable  in ” System Info” Then you need to correct the permission by using following  steps. I am able to solve this issue with the following steps. cd /var/www/vhosts/[domain.com] chown -R [username]:psacln httpdocs chmod -R g+w httpdocs find httpdocs -type d -exec chmod g+s {} \; Add […]