Viewing 1 replies (of 1 total)
  • Hi @lumengl my suggestion is try to setup the following permissions:

    • All directories should be 755 or 750.
    • All files should be 644 or 640. Exception: wp-config.php should be 440 or 400 to prevent other users on the server from reading it.

    Additionally, you can add the following code in your wp-config.php file to force it

    define( 'FS_CHMOD_DIR', ( 0755 & ~ umask() ) );
    define( 'FS_CHMOD_FILE', ( 0644 & ~ umask() ) );

    Let me know if this fix the issue…

Viewing 1 replies (of 1 total)
  • The topic ‘cPanel and wordpress permissions’ is closed to new replies.