SSH to the web server cd into your wordpress forlder; cd /var/www/html/mywpfolder Make Apache the owner chown apache:apache -R * Change all sub-folder’s permissions to rwxr-xr-x (0755); find . -type d -exec chmod 755 {} \; Change all files’s permissions to rw-r–r– (0644); find . -type f -exec chmod..
category : CentOS
Thanks to the original poster for this great article, please make sure to visit his article here ! TL:DR OpenSSH Installations under CentOS Linux To install the server and client type: # yum -y install openssh-server openssh-clients Start the service: # chkconfig sshd on # service sshd start Make sure port 22 is opened: # ..
Type the following command to install NTP yum install ntp Turn on service chkconfig ntpd on Synchronize the system clock with 0.pool.ntp.org server: ntpdate pool.ntp.org Start the NTP: /etc/init.d/..