![]() |
|
0 3 * * 1 find /var/www/html -type d -perm 755 -exec ls -ld {} \; > /var/log/dir-perms-755.log Then check for unfamiliar directories marked updated . Situation: A shared hosting customer sees in their Joomla error log: [2025-01-10 08:23:45] gecko drwxrxrx updated /home/user/public_html/tmp
find your-directory -type d -exec chmod 755 {} \; gecko drwxrxrx updated
drwxr-xr-x 2 owner group 4096 Jan 15 14:32 your-directory If the directory has wrong permissions (e.g., 777 or 750 where 755 is needed): 0 3 * * 1 find /var/www/html -type
| Â |