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>
This commit is contained in:
2026-05-03 08:33:12 -04:00
commit 668d973889
1925 changed files with 415604 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/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"