Files and Directories permissions error

From time to times, we must fix permissions on files and directory in order to secure an installation or to fix a broken one.

The common error message that you'll encounter in your logs will be similar to the following:

error: directory is writable by others


The process to resolve this particular issue is quite straight forward and simple.

1) Log to your server using SSH
2) Run those commands

find ~/www/ -type f -exec chmod 644 {} \;
find ~/www/ -type d -exec chmod 755 {} \;


3) Visit your website and see if everything run smoothly


And that's about it!
  • 1 Kunder som kunne bruge dette svar
Hjalp dette svar dig?

Relaterede artikler

Recommended firewall

What firewall do you recommend to secure my Linux server? MACI recommends the CSF (ConfigServer...

Mon Compte a été Piraté

Un compte piraté (ou hacké) est un compte qui a été compromis par un individu non-autorisé....

Bloquer une Adresse IP ou un Domaine

Cet article est destiné uniquement aux utilisateurs avancés. Veuillez ne pas...

Informations Importantes Pour Sécuriser Votre Site

En tant que détenteur d'un forfait d'hébergement mutualisé, il est...

Magento Security Tips

E-commerce Site VulnerabilitiesMost e-commerce platforms and payment gateways possess the same...