Why AWStats is not updating automatically?

AWStats is not updating automatically in cPanel 1)  SSH to server as root. 2) Change the directory to: /home/user/tmp/awstats * We need to make sure that the directive “AllowToUpdateStatsFromBrowser” is set to 1. grep AllowToUpdateStatsFromBrowser awstats.example.com.conf * Please check the permission of “/usr/local/cpanel/3rdparty/bin/awstats.pl” file. It must be 775. # ll /usr/local/cpanel/3rdparty/bin/awstats.pl -rwxrwxr-x. 1 root root 679172 Aug […]

See More

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 […]

See More

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 […]

See More