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