Joomla/WordPress/CMS Permissions

Joomla/WordPress/CMS Permissions

With the way that Hsphere and cPanel work in our shared environments, all CMS permissions should be set as follows:

Directories - 755
Files - 644

If permissions have been changed or if you're unsure which permissions are which, you can run the following commands to change all files and directories recursively:
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
You need to make sure file ownership is correct as well. The user and the group need to match the username. Finally, make sure that fastcgi is selected in hsphere under the PHP Advanced section under Web Options.
    • Related Articles

    • CMS Brute Force Protection - htaccess

      Content management systems (CMS) such as Wordpress and Joomla! have become regular targets of brute force attempts. The most common way these types of attacks are performed is by hitting the wp-admin.php and administrator/index.php with thousands of ...
    • Permission issues in wordpress

      If there is a permissions error in a wordpress install it's possible the php version is libphp. libphp requires 777 permissions everywhere and that's very insecure. If the version is libphp under hsphere change it to fastcgi which is more secure and ...
    • WordPress

      WordPress     Install Linux: wget --no-check-certificate http://wordpress.org/latest.tar.gz Then unzip the package tar -xzvf latest.tar.gz The WordPress package will extract into a folder called wordpress in the same directory that you downloaded. ...
    • File Manager Cpanel / Fixing 403 correcting permissions.

      Learn how to troubleshoot WordPress 403 Forbidden error messages. We show you how to check for a corrupt .htaccess file. Diagnose faulty WordPress Plugins and checking for correct WordPress file permissions. Problem When you attempt to view your ...
    • Chmod or change permissions on a directory through FTP client (FileZilla)

      Every file and folder that exists on your web server has a set of attributions, or permissions, that you can change using FileZilla. These permissions are assigned and tells the web server three things about the folder or file. On a very simplistic ...