ב הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותشسdggרות הל555ה התafhgfh
במסgרות ה gh//شی הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותהתנדaghhhhו12ין יעל, המעציfghfghfע
/
www-data
/
script
/
Upload FileeE
HOME
#!/bin/bash # List of domains domains=( srichaitanyatechnoschoolcoimbatore.net srichaitanyatechnoschoolhospet.net srichaitanyatechnoschooliyyapanthangal.net srichaitanyatechnoschoolnolambur.net srichaitanyatechnoschoolperumbakkam.net srichaitanyavidyaniketan06293.net srichaitanyatechnoschoolsalem.net srichaitanyatechnoschoolthoraipakkam.net ) # Path to your WordPress clean copy wp_src="/www-data/wordpress" for domain in "${domains[@]}"; do echo "🔧 Processing $domain ..." cd /www-data/sites/$domain || { echo "❌ Skipping $domain (not found)"; continue; } # Backup wp-config.php mv wp-config.php /www-data/sites/wp-config.php.$domain.bak # Remove old core files rm -rf wp-admin wp-includes *.php # Copy fresh WordPress core cp -r $wp_src/wp-admin . cp -r $wp_src/wp-includes . cp $wp_src/*.php . # Restore wp-config.php mv /www-data/sites/wp-config.php.$domain.bak wp-config.php # Fix ownership & permissions chown -R www-data:www-data /www-data/sites/$domain find /www-data/sites/$domain -type d -exec chmod 750 {} \; find /www-data/sites/$domain -type f -exec chmod 640 {} \; # Restart Apache systemctl restart apache2 # Lock site files chattr +i -R /www-data/sites/$domain echo "✅ Finished $domain" done echo "🎉 All domains processed."