Modular DS
Modular DS is an all-in-one WordPress site management platform built for freelancers and agencies to easily manage multiple sites, save time, and run a profitable maintenance business. From a single, intuitive dashboard, you can: Bulk manage and update plugins, themes, and WordPress core across multiple sites at once. Monitor uptime and performance with real-time alerts. Schedule automatic backups and restore them in one click from Modular DS. Know how likely a plugin update is to break your site before applying it with Update Copilot, our AI-powered update scoring system. Run quick or safe updates and automate them with smart rules based on version type, risk level, or detected vulnerabilities. Perform vulnerability and malware scans. Detect and fix broken links and images. Migrate, clone, and create staging environments. Optimize your WordPress databases right from Modular DS. Generate automated reports, including pre-maintenance reports, to show the value of your work to clients. Display a custom maintenance mode page to hide unfinished changes while you update or work on a site. Modular DS is the most complete alternative to ManageWP, MainWP, WP Umbrella, InfiniteWP, and WP Remote, bringing smart update automation, monitoring, backups, security, and reporting into a single platform. Usability and support are at the heart of everything we do. Our team brings over a decade of hands-on experience in WordPress site management and is always ready to help when you need it. Explore more features on our website or try it for free. Manage, monitor, and protect all your WordPress sites in one place Connect your WordPress sites to Modular DS, access them with one-click login, and manage updates, backups, security scans, uptime monitoring, and more in a single dashboard. Stay organized with tags and teams, and assign custom roles and permissions to collaborators. Bulk management and updates Install, update, activate, or delete plugins, themes, and WordPress versions across multiple websites at once (or one by one). The global updater also gives you a full picture of what’s happening across your sites: detected vulnerabilities, Update Copilot risk scores, warnings for abandoned plugins, and more, all from one place. Smarter, automated updates Choose how your updates run: as quick standard updates, as safe updates with before and after screenshots and instant rollbacks, or as smart automated updates that let you define when and under what conditions they should run. Pair it with Update Copilot, our AI-powered scoring system, to understand how risky a plugin update might be before applying it and make more informed decisions. You can also schedule one-time updates for a specific date and time, or simply hide updates you are not ready to apply. Whatever approach you prefer, Modular DS gives you more control and flexibility to safely keep your sites up to date. Backups and one-click restoration Schedule GDPR-compliant backups to safeguard your clients’ sites and data, or create one manually whenever you need. Choose between full or incremental backups and easily restore entire sites, files, or databases from Modular DS. Uptime monitoring Never get caught off guard by downtime. Get notified by email, WhatsApp, Slack, or Discord when any of your websites go down, before your clients even notice. Customize check frequency, response time, keyword detection, and alert settings to fit your workflow. Modular DS includes one of the most complete uptime monitor tools for WordPress. Security monitoring and management Modular DS includes vulnerability scans for plugins, themes, and WordPress core, with alerts up to 48 hours before issues are publicly disclosed. You also have malware scanning to check your sites’ files and database for malicious content, and admin user alerts to know whenever someone is added or removed as an administrator on any of your connected sites. On top of that, you get notified whenever something else requires your attention, from outdated PHP to expired SSL certificates. For teams that need more, our add-ons extend these capabilities. See the integrations section below for details. Broken link checker Run scheduled or on-demand scans to detect broken links and images across your sites. When broken internal links are found, create redirects to fix them without leaving Modular DS. Site migration, cloning, and staging Modular DS lets you migrate or clone any connected site in three ways: move it to another existing site in the platform, migrate it to a different server while keeping the same domain, or clone it to a new domain. You can also create staging environments on your own server to test changes before going live. Database optimization Clean up post revisions, spam comments, transients, orphaned tables, and more directly from Modular DS. No need for extra plugins. Keep your websites running smoothly while saving time and having a clear record of every optimization made. Client reports From winning new clients to keeping existing ones, Modular DS covers both ends of the reporting workflow. Before a client signs up, you can generate a pre-maintenance report to show everything their site needs: pending updates, detected vulnerabilities, site health issues, database optimizations, etc. Once they are on board, automatically generate and send regular maintenance reports that highlight the work you do behind each site. Add time logs, dates, and screenshots to showcase the full scope of your efforts, so clients understand the value of your service and keep paying for it. Both report types help you build trust, improve client retention, and turn your WordPress maintenance offering into recurring revenue. Integrations Modular DS integrates with Google Analytics, Search Console, WooCommerce, and PageSpeed, giving you an overview of your websites in one place and allowing you to include the data your clients care most about in your reports. To further strengthen your sites’ security, two add-ons extend what is included in every plan. Patch & Protect, powered by Patchstack, applies virtual patches and hardening rules to block known vulnerabilities and common attack methods as soon as they are detected, even before an official fix is available. And a malware add-on powered by Imunify Connect, which lets you run weekly and on-demand scans across your sites. Support that understands you Modular DS is the first site management platform with support in both English and Spanish. Whether you have a question or run into an issue, our team has over 10 years of WordPress experience and is here to help you.
Top keywords
- ds15×1.44%
- modular15×1.44%
- modular ds15×1.44%
- sites13×1.25%
- site11×1.06%
- updates11×1.06%
- wordpress11×1.06%
- update10×0.96%
- run7×0.67%
- backups6×0.58%
- clients6×0.58%
- management5×0.48%
WP-DBManager
WP-DBManager looks after the database behind your site: it backs it up, restores it, optimizes and repairs it, empties or drops tables and runs queries you write, all from wp-admin rather than from a shell or phpMyAdmin. Backups, optimization and repair can be left to run on a schedule, and the backup can be emailed to you when it finishes. Donations I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations. Usage Securing The Backup Folder A database backup contains everything, including your users table. Anyone who can guess a backup file name can download the lot, so the folder must not be served over HTTP. The reliable option, on any server: set Path To Backup under WP-Admin -> Database -> Settings to a folder outside your web root, for example /var/www/example.com/backup-db when WordPress lives in /var/www/example.com/public_html. Nothing served, nothing to configure. If the folder has to stay inside the web root: Apache — move htaccess.txt from Folder: wp-content/plugins/wp-dbmanager to Folder: wp-content/backup-db/.htaccess IIS — move Web.config.txt from Folder: wp-content/plugins/wp-dbmanager to Folder: wp-content/backup-db/Web.config nginx — nginx does not read .htaccess files, so the file above does nothing. Add this to your server block and reload nginx: location ^~ /wp-content/backup-db/ { deny all; } Move index.php from Folder: wp-content/plugins/wp-dbmanager to Folder: wp-content/backup-db/index.php as well, so the folder cannot be listed. The Backup DB page requests a file from the folder and reports what the server actually returns, so you can confirm the folder is closed rather than assume it. WP-CLI wp dbmanager tables wp dbmanager backups wp dbmanager backup --yes wp dbmanager backup --no-gzip --yes wp dbmanager restore --yes wp dbmanager delete ... --yes wp dbmanager email
[email protected] --yes wp dbmanager optimize --all --yes wp dbmanager repair wp_options --yes wp dbmanager empty ... --yes wp dbmanager drop ... --yes Everything that changes anything asks first, so a script has to pass --yes. That includes backup, which deletes the oldest backups to stay inside Maximum Backup Files, and email, because a dump holds your users table and a sent message cannot be recalled. tables and backups only read, and take a --format of table, csv, json, yaml, count or ids; their sizes are in bytes rather than the KiB and MiB the screens print, because a shell is better at arithmetic than at parsing 1.2 MiB. optimize and `repair` take table names or `--all`. `empty` and `drop` take names only: emptying or dropping every table in a database is not maintenance, and the screen at least shows you the list before you tick it. There is no run subcommand. WP-CLI already ships wp db query, which reaches the same database through the same client, so the Run SQL Query screen has no command counterpart. That screen is unchanged and still works. wp dbmanager checks no capability. WP-CLI has no logged-in user unless you ask for one with `--user`, and whoever can run it can already read the credentials in `wp-config.php`, so a check would refuse every scheduled backup script while protecting nothing. The `install_plugins` gate on the admin screens is unchanged.