Actions
Feature #42405
opendon't use chmod -R 755
Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
In many places (e.g. https://www.redmine.org/projects/redmine/wiki/RedmineInstall) you say using chmod -R 755
and later something like find files log tmp public/assets -type f -exec chmod -x {} +
for removing x from files.
Better use chmod -R a=rX,u+w
Updated by Grischa Zengel 2 days ago
If you want to force remove x: chmod -R =r,+X,u+w
Actions