Skip to content

Instantly share code, notes, and snippets.

@llipe
Created May 27, 2018 05:14
Show Gist options
  • Save llipe/bf2f58f93b475a65b1be384ed29573f5 to your computer and use it in GitHub Desktop.
Save llipe/bf2f58f93b475a65b1be384ed29573f5 to your computer and use it in GitHub Desktop.
Corregir permisos de archivos y directorios en wordpress
# Ref: https://codex.wordpress.org/Changing_File_Permissions
# Fix de permisos de carpetas desde carpeta public del sitio
sudo find . -type f -exec chmod 664 {} \;
sudo find . -type d -exec chmod 775 {} \;
chmod -R 660 wp-config.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment