Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fdaciuk/9228208 to your computer and use it in GitHub Desktop.
Save fdaciuk/9228208 to your computer and use it in GitHub Desktop.
Mudar permissões de arquivos e diretórios no WP

Mudar permissões de arquivos e diretórios no WP

Mudar permissões de diretórios:

find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;

Mudar permissões de arquivos:

find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment