Corrigindo as permissões do usuário do cpanel imprimir

  • 0

 

Para corrigir as permissões do usuário no cpanel digite os comandos abaixo:

# find /home/USUARIO/public_html -type f -exec chmod 644 {} \; -print
# find /home/USUARIO/public_html -type d -exec chmod 755 {} \; -print
# find /home/USUARIO/public_html -type d -name cgi-bin -exec chmod 755 {} \; -print
# find /home/USUARIO/public_html -type f \( -name "*.pl" -o -name "*.perl" \) -exec chmod 755 {} \; -print

 


Esta resposta foi útil?

« Retornar