.
wp-config.php :
define ('FS_CHMOD_DIR', '02775');
define ('FS_CHMOD_FILE', '0664');
Note that the values 02775 and 0664 are enclosed in quotation marks and therefore PHP is interpreted as strings. They are numerical values and should not be quoted.
source
share