Tag: Intranet

  • The Multisite Trap: Why Centralizing Your WordPress Sites is Usually a Corporate Disaster

    In the WordPress ecosystem, there is a concept that sounds like an absolute dream to CTOs and agency owners: WordPress Multisite.

    The pitch is seductive: “Why manage 20 different WordPress installations when you can have one single dashboard, update plugins once, and rule them all from a central command center?”

    The reality is usually an architectural nightmare. Activating Multisite creates a massive Single Point of Failure (SPOF). Because all sub-sites share the same database and the same plugin files, if a malicious script takes down Site A, Sites B, C, and D die instantly. If the database gets corrupted, you lose the entire network. Furthermore, extracting a single site later to move it to its own server requires expensive premium tools and hours of database surgery.

    At AgilePress, we believe convenience should never compromise infrastructure isolation. Here is our strict protocol on when to flee from Multisite, and the specific scenarios where it is actually the smartest choice you can make.


    Phase 1: The Blacklist (When to NEVER use Multisite)

    If you are using Multisite for any of the following reasons, you are accumulating massive technical debt and legal liability:

    • Hosting Different Clients: This is professional negligence. If Client A demands database access or a server migration, you cannot give it to them without exposing Client B’s data. It is a GDPR violation waiting to happen.
    • Mixing Different Business Models: If Site A is a high-traffic WooCommerce store and Site B is a simple corporate blog, putting them on a Multisite forces the blog to share a database with heavy transactional tables it doesn’t even use.

    The AgilePress Solution for Agencies: Standalone + MainWP. Every client gets their own isolated WordPress installation (Standalone). If one gets DDOS’d, the others stay up. To get the “one dashboard” convenience, you install MainWP on a hidden, separate server. MainWP connects to all your standalone sites via API, allowing you to update plugins and run backups globally without entangling their databases.


    Phase 2: The Greenlight (When Multisite is Brilliant)

    Multisite is not inherently evil; it is just wildly misunderstood. It was designed for a very specific purpose: Deploying the exact same codebase, for the exact same entity, with separated data.

    Here are the four AgilePress-approved use cases where Multisite is the superior architectural choice:

    1. The AgilePress Showroom (Rapid Provisioning)

    We use Multisite internally at AgilePress as a sandbox. When a client needs a prototype, we don’t spin up a new server. We click a button on our internal Multisite (demo.agilepress.net), and within three seconds, a fresh sub-site is born with our Block Theme (Frost) and premium plugins already activated.

    • Why it works: It is not in production. If an update breaks the network, no real business loses money. Once the client approves the demo, we clone it, migrate it to an isolated Standalone server, and delete the Multisite instance to keep our showroom clean.

    2. The Corporate Intranet (Departmental Isolation)

    A large company needs an internal portal, but HR, IT, and Sales all need their own spaces to publish news and documents without stepping on each other’s toes.

    • Why it works: You create an Intranet Multisite. Every department gets a sub-site (hr.company.com, it.company.com). They all share the exact same corporate branding (Theme) and the exact same security plugins, but their content and user roles are perfectly separated.

    3. The Branch Office Network (Standardized Engines)

    Imagine a company with 15 physiotherapy clinics across the country. They all need a booking system.

    • The Agile Architecture: You build a Multisite using a heavy engine like Bookly or FluentBooking. Each clinic gets its own sub-site (toulouse.clinic.com, lyon.clinic.com).
    • Why it works: They share the same look and feel, and the IT team only maintains one codebase. However, because they are on separate sub-sites, Madrid’s receptionists cannot accidentally delete Barcelona’s appointments. You achieve global standardization with local data isolation.

    4. Enterprise Multilingual Architecture

    Standard translation plugins (like WPML) destroy your database by duplicating posts and hacking the wp_options table.

    • Why it works: For high-performance enterprise sites, you use Multisite combined with MultilingualPress. You create one sub-site per language (en.company.com, es.company.com). The databases remain clean, queries are lightning-fast, and translators can easily link the English version of a post to the Spanish one without causing server bloat.

    Conclusion: The AgilePress Decision Tree

    Look at your project scope and choose your infrastructure:

    • Are they different clients paying different bills? -> Standalone + MainWP.
    • Are you mixing an E-commerce site with a portfolio? -> Standalone + MainWP.
    • Are you building a standardized Intranet for one company? -> Multisite.
    • Are you giving 10 local franchises the exact same booking tool? -> Multisite.
    • Do you need to spin up disposable client demos in 3 seconds? -> Multisite.

    Stop using Multisite to save $10 a month on hosting, and start using it for what it was built for: unified infrastructure at scale.