suPHP SoftException – Permission 644 and 755

shape
shape
shape
shape
shape
shape
shape
shape

If you use suPHP you know that all files must have permission 644 and directories 755.

To solve this problem, go to the folder where you want to apply the above permissions in bulk, and run the following commands:

 

find . -type d -print0 | xargs -0 chmod 0755 # Aplica recursivamente a permissão 755 para os diretórios

 

find . -type f -print0 | xargs -0 chmod 0644 # Aplica a permissão 644 para todos os arquivos

 

Leave a Reply

Your email address will not be published. Required fields are marked *

Latest news

Latest news directly from our blog.