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:
Executable
+17
@@ -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"
|
||||
Reference in New Issue
Block a user