| Server IP : 146.190.157.162 / Your IP : 216.73.217.6 Web Server : Apache System : Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01-KIT-DIGITAL 6.5.0-44-generic #44-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:10:09 UTC 2024 x86_64 User : businessweek ( 639) PHP Version : 8.2.10-2ubuntu2.2 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,pcntl_setpriority,dl,putenv,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/ |
Upload File : |
#!/bin/bash
SITE="/var/www/html/marisolbenitourd"
cd "$SITE" || exit 1
project=$(basename "$SITE")
TMP_CONFIG="/tmp/wp-config-${project}.php"
cp wp-config.php "$TMP_CONFIG"
find . -mindepth 1 \
! -path "./wp-content/uploads*" \
! -name "wp-config.php" \
-exec rm -rf {} +
wp core download --force --skip-content --allow-root
mv "$TMP_CONFIG" wp-config.php
mkdir -p wp-content/uploads
cat > wp-content/uploads/.htaccess << 'EOF'
<Files *.php>
deny from all
</Files>
EOF
wp theme install twentytwentyfour --activate --allow-root
wp plugin install contact-form-7 --activate --allow-root
wp plugin install duplicate-page --activate --allow-root
wp plugin install elementor --activate --allow-root
wp plugin install polylang --activate --allow-root
wp plugin install wordpress-seo --activate --allow-root
wp plugin install akismet --activate --allow-root
echo
echo "Instala manualmente (ZIP limpio):"
echo "- elementor-pro"
echo "- megamenu"
chown -R "$project:$project" .
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
chown -R "$project:www-data" wp-content
find wp-content -type d -exec chmod 775 {} \;
find wp-content -type f -exec chmod 664 {} \;
echo
echo "Sitio limpio, core nuevo y plugins oficiales reinstalados"