Files
feadulta/fix-permissions.sh
T
rafa 668d973889 Initial commit — migración Joomla→WordPress feadulta.org
Incluye: mu-plugins custom (fea-homepage, carta-semana), scripts de
migración/traducción/deploy, documentación de auditoría, análisis de
cartas y HTML de evangelios exportados desde Joomla.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-03 08:33:12 -04:00

18 lines
521 B
Bash
Executable File

#!/bin/bash
echo "Arreglando permisos de Joomla..."
docker exec joomla-web bash -c "
chown -R www-data:www-data /var/www/html
find /var/www/html -type d -exec chmod 755 {} \;
find /var/www/html -type f -exec chmod 644 {} \;
chmod -R 777 /var/www/html/tmp
chmod -R 777 /var/www/html/cache
chmod -R 777 /var/www/html/administrator/cache
chmod -R 777 /var/www/html/logs
chmod 644 /var/www/html/configuration.php
"
echo ""
echo "✓ Permisos arreglados"
echo "Recarga http://localhost:8080 en tu navegador"