Close Menu
GeekBlog

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    MakuluLinux’s New AI-OS Wants to Run Your Whole Desktop, Not Just Answer Questions

    August 1, 2026

    AI Tokens Got 98% Cheaper. Corporate AI Bills Are Exploding Anyway

    July 31, 2026

    Hackers Are Hijacking Hotel Wi-Fi to Steal Microsoft 365 Logins Without a Single Phishing Email

    July 30, 2026
    Facebook X (Twitter) Instagram Threads
    GeekBlog
    • Home
    • Mobile
    • Tech News
    • Blog
    • How-To Guides
    • AI & Software
    Facebook
    GeekBlog
    Home»Blog»How to Install MODX on Bluehost (2026 Guide)
    Blog

    How to Install MODX on Bluehost (2026 Guide)

    Marcus BennettBy Marcus BennettJuly 30, 202614 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    Website code on a monitor representing how to install MODX on Bluehost shared hosting
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link

    To install MODX on Bluehost, create a MySQL database and user in cPanel, upload the MODX Revolution Traditional package into your domain’s folder, extract it, then run /setup/ in the browser and follow the wizard. Check the Softaculous Apps Installer first, because MODX is in the Softaculous catalog, but not every host exposes the whole catalog.

    Quick answer: Open cPanel from the Bluehost Portal and look in Software → Softaculous Apps Installer for MODX. If it’s there, one click does everything. If it isn’t, do it manually: set PHP to 8.2 or newer, create a database in MySQL Databases, upload and extract the Traditional package, run yourdomain.com/setup/, then delete the setup/ directory and rename ht.access to .htaccess.
    Updated July 2026: MODX Revolution 3.2.3 was published on 21 July 2026, and the Softaculous catalog carries that exact version. MODX 3.2, released in February 2026, raised the minimum PHP requirement to 8.1 and added PHP 8.5 compatibility. Note that the MODX docs’ server-requirements page still quotes a PHP 7.2 floor, which is out of date relative to what the package actually requires. Also ignore any tutorial that mentions Bluehost’s old SimpleScripts or Mojo Marketplace installer, which no longer exists.

    MODX is a good fit for Bluehost shared hosting. It’s a plain LAMP application with no daemon, no queue worker and no build step, so nothing about it fights the platform the way a Node app or a Go binary would. The whole install is about twenty minutes, and most of the pain people hit afterward comes down to two things: the setup/ directory left in place, and friendly URLs configured on only one of the two sides that need it.

    Is MODX still in Bluehost’s script installer?

    Check, don’t assume. MODX is definitely still maintained in the Softaculous app catalog, listed at version 3.2.3-pl with a July 2026 release date and about 61 MB of disk. Bluehost does ship Softaculous, reachable two ways:

    1. Bluehost Portal → Hosting → cPanel → scroll to Software → Softaculous Apps Installer.
    2. Bluehost Portal → Websites → Manage Site → Overview tab → cPanel → Software → Softaculous Apps Installer.

    What Bluehost does not publish is a complete list of which Softaculous apps its licence exposes, and hosts routinely surface only a subset. So search “MODX” in the Softaculous sidebar. If it appears, use it: pick the domain, set the install directory (leave it blank for the domain root), set the admin username, password and email, and let it create the database for you. Two minutes, done.

    If it doesn’t appear, the manual install below is straightforward and gives you more control over the database name, the table prefix and the PHP version. I’d argue it’s the better route anyway, because Softaculous installs sometimes lag the current MODX release and you end up upgrading immediately.

    MODX 3 requirements vs Bluehost shared hosting

    RequirementMODX 3 needsBluehost shared providesVerdict
    PHP version8.1 minimum for 3.2.x; 8.2+ sensible7.4 minimum, up to 8.5; anything below 8.2 marked deprecatedFine. Set 8.3 or 8.4.
    PHP extensionszlib, json, gd, pdo_mysql, simplexml, curl, mbstring, imagickAll standard on cPanel builds; imagick variesCheck imagick in the config screen
    memory_limit64 MB recommended minimumTypically well above that on shared plansFine, but raise it before big package installs
    DatabaseMySQL 5.7+ or MariaDB 10.1+, utf8mb4MySQL/MariaDB via cPanelFine
    Web serverApache 2.4+ or nginx 1.18+, rewrite supportApache with .htaccess honoredFine
    Disk space~61 MB for the package, plus media10 GB on Starter, 50 GB on Business, 100 GB on eCommerce EssentialsFine even on Starter
    CronNot required by core; per-minute for the Scheduler extraCron Jobs in cPanel; presets start at every 15 minutesEnter fields manually for tighter schedules
    Shell accessNeeded only for the Advanced packageNon-root SSH on some plansUse the Traditional package and skip it

    The only genuine question mark is SQL Server, which MODX dropped support for in 3.0, and PostgreSQL, which exists only as a third-party implementation. On Bluehost you’re using MySQL either way, so it’s moot.

    Step 1: Set the PHP version

    Do this before you upload anything, because a MODX 3.2 install on PHP 8.0 fails at the config check and wastes your time. Two paths:

    1. Bluehost Portal → Websites → Manage Site → Advanced tab → PHP Version tile → Change Version.
    2. Or cPanel → Software → MultiPHP Manager, tick the domain, pick the version from the dropdown, click Apply.

    PHP 8.3 or 8.4 is the sweet spot. MODX 3.2 declares PHP 8.5 compatibility, but the extras ecosystem always trails the core, so I’d stay one version behind the newest option available.

    Step 2: Create the database and user

    Recommended for you:

    How to Install Helm in Minikube and Deploy Your First Chart
    Blog·Jul 30, 2026

    How to Install Helm in Minikube and Deploy Your First Chart

    In cPanel, open Databases → MySQL Databases. Bluehost prefixes everything with your account name, so a database you name modx becomes something like acctname_modx. Write down the full prefixed names exactly as cPanel shows them, because that’s what the installer wants.

    1. Under Create New Database, enter a name and click Create Database.
    2. Under MySQL Users → Add New User, create a user with a generated password. Save it somewhere.
    3. Under Add User To Database, pick both, click Add, then grant ALL PRIVILEGES.

    MODX needs SELECT, INSERT, UPDATE and DELETE for normal operation, plus CREATE, ALTER, INDEX and DROP for installs and upgrades, and CREATE TEMPORARY TABLES for some extras. Granting ALL PRIVILEGES on a single-purpose database is the pragmatic call on shared hosting.

    Step 3: Upload and extract MODX

    Download the Traditional distribution from modx.com. The Advanced package is smaller because the core is compressed, but it expects SSH and comfort with permissions, so the Traditional one is right for shared hosting.

    Then either use cPanel’s File Manager or SFTP:

    1. File Manager route: cPanel → Files → File Manager, navigate to public_html (or the addon domain’s folder), click Upload, send the ZIP, then right-click it and choose Extract. This is much faster than uploading thousands of small files over SFTP.
    2. SFTP route: connect on port 22 with your cPanel credentials, extract the ZIP locally, and upload the extracted tree. Expect it to take a while.

    The archive extracts into a versioned folder like modx-3.2.3-pl. Move its contents up one level so index.php, core/, manager/, connectors/ and setup/ sit directly in the document root. Then delete the ZIP and the empty folder.

    Tip: Make core/cache/ and core/config/ writable before you run setup. On Bluehost, PHP usually runs as your own user, so 755 on directories is enough. If the config check complains, create an empty core/config/config.inc.php and make it writable, and do the same for core/packages, core/import and core/export.

    Step 4: Run /setup/ and read the config check

    Browse to https://yourdomain.com/setup/. The wizard walks through:

    1. Language selection.
    2. Install type. Pick New installation.
    3. Database connection: hostname localhost, plus the prefixed database name, username and password from step 2. Leave the table prefix as modx_ unless you’re putting two installs in one database. Click the link to test the database server connection and view collations and pick utf8mb4_general_ci.
    4. Administrator account: username, a strong password, and a real email address. MODX 3.2 raised the minimum password length, so a short one will be rejected.
    5. The config check. This is the screen that matters.

    The config check verifies your PHP version and extensions and confirms every directory it needs is writable. Green across the board means continue. A red line tells you exactly which path or extension to fix, and you can re-run the check without restarting the wizard. Fix problems here rather than pushing through, because a half-installed MODX is more annoying to clean up than a fresh start.

    Step 5: Remove or lock down /setup/

    MODX explicitly recommends removing the setup/ directory after installing, so nobody else can run setup against your site. The final wizard screen offers a checkbox to do it for you. Tick it.

    If the checkbox fails because of permissions, delete the folder by hand in File Manager. If you want to keep it around for a future upgrade, at minimum drop an .htaccess inside it:

    # public_html/setup/.htaccess
    Require all denied
    Heads up: Load yourdomain.com/setup/ in a private browser window after you finish. If you get anything other than a 403 or 404, it’s still exposed. This is the single most common way freshly installed MODX sites get taken over.

    Step 6: Turn on friendly URLs

    Friendly URLs need two changes, and doing only one is why people end up with 404s everywhere. First, rename the file MODX ships as an example:

    1. In File Manager, rename ht.access in the document root to .htaccess. Turn on “Show hidden files” in File Manager settings or it will vanish from the listing.
    2. In the MODX manager, go to System → System Settings, filter for friendly_urls, and set it to Yes. Set friendly_alias_urls to Yes as well if you want alias paths.
    3. Clear the cache from Manage → Clear Cache (or the site menu, depending on your manager theme).

    The minimum working rewrite block, straight from the MODX documentation, is:

    RewriteEngine On
    RewriteBase /
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

    If MODX lives in a subdirectory rather than the domain root, change RewriteBase to match, for example RewriteBase /mysite/. That one line accounts for most subdirectory friendly-URL failures.

    Step 7: Set up cron for scheduled tasks

    MODX core does not need a cron job to function, which surprises people coming from other CMS platforms. You need one once you install something that schedules work: the Scheduler extra, which wants to be triggered every minute, or CronManager, which lets you manage jobs from inside the manager.

    On Bluehost, go to Websites → Manage Site → Advanced tab → Cron Jobs tile → Manage. You can either pick a preset from Common Settings, which starts at every 15 minutes, or fill in the minute, hour, day, month and weekday fields yourself for anything tighter. The command follows the usual PHP CLI shape:

    # Every minute, quietly
    * * * * * /usr/local/bin/php -q /home/USERNAME/public_html/path/to/task.php >/dev/null 2>&1

    Replace USERNAME with your account name and confirm the PHP binary path in cPanel, since it differs between servers. Sending output to /dev/null stops cron emailing you every minute forever. Also check that the cron job’s PHP version matches the one your site runs, because the CLI binary and the web handler can differ.

    Step 8: Log into the manager

    Your admin panel is at https://yourdomain.com/manager/. Log in with the administrator account from the wizard. First things worth doing:

    1. Set site_url and site_start in System Settings if anything looks wrong.
    2. Force HTTPS. Bluehost provisions a free certificate, so redirect HTTP in .htaccess and set the manager to require it.
    3. Install extras from Extras → Installer. If package downloads fail, your core/packages directory isn’t writable or outbound requests are blocked.

    Troubleshooting

    Blank white manager screen

    Almost always a PHP error being swallowed. Check the error log in cPanel under Metrics → Errors, and look at core/cache/logs/error.log. The usual causes are an unwritable core/cache, a PHP version mismatch after you changed it in MultiPHP Manager, or a memory limit hit while the manager builds its JavaScript. Clearing the contents of core/cache by hand in File Manager fixes a surprising share of these.

    “Could not connect to the database”

    Three checks, in order. One, is the database name actually prefixed with your account name? People type modx when cPanel created acctname_modx. Two, is the user attached to the database with privileges granted, not just created? Three, is the host localhost? On Bluehost shared it is. If setup already wrote a bad config, the credentials live in core/config/config.inc.php and you can correct them there directly.

    Cache or permission errors after install

    MODX writes to core/cache constantly and to core/packages, core/import and core/export when handling extras. Set directories to 755 and files to 644, and only escalate if that genuinely fails. If you extracted the ZIP locally and uploaded over SFTP, permissions can arrive scrambled, which is another reason to upload the archive and extract server-side.

    Friendly URLs return 404 on every page but the homepage

    The .htaccess isn’t there or isn’t being read. Confirm the file is named .htaccess with the leading dot and not still ht.access, confirm RewriteBase matches where the site lives, confirm friendly_urls is Yes in System Settings, and clear the cache. If the homepage 404s too, you have a rewrite loop, usually from a stale RewriteBase left over from a different install.

    The manager loads but the resource tree is empty

    Recommended for you:

    How to Deploy FuelPHP on Hosting in 2026
    Blog·Jul 30, 2026

    How to Deploy FuelPHP on Hosting in 2026

    A cached permissions problem. Clear the cache, then check that your admin user is in a group with the Administrator role and that the default context is set. If you’re still stuck, the MODX server requirements page is the fastest way to rule out an environment problem before you go digging in the database.

    Frequently asked questions

    Does Bluehost support MODX?

    Yes. MODX 3 is a standard PHP and MySQL application, and Bluehost shared hosting meets every requirement, including PHP 8.2 and newer and Apache with .htaccess support. Whether it appears in Bluehost’s Softaculous list depends on their catalog, but the manual install works regardless.

    What PHP version does MODX 3 need?

    MODX 3.2 and later require PHP 8.1 as an absolute minimum, and 3.2 added PHP 8.5 compatibility. The MODX docs still list a 7.2 floor, which is stale. On Bluehost, set 8.3 or 8.4 in MultiPHP Manager before you run the installer.

    Do I have to delete the setup directory?

    Yes, and MODX says so in its own docs. Leaving setup/ in place lets anyone who finds it run the installer against your site. Use the checkbox on the final wizard screen, or delete the folder in File Manager, then verify it returns 403 or 404.

    Why do my MODX pages 404 after enabling friendly URLs?

    You almost certainly renamed ht.access but didn’t set the friendly_urls system setting to Yes, or you did both but never cleared the cache. In a subdirectory install, also check that RewriteBase points at that subdirectory.

    Should I use Softaculous or install MODX manually?

    Manually, if you’re comfortable with File Manager and cPanel databases. Softaculous is faster but often installs a version behind, uses a generated database name you didn’t choose, and hides the config-check step that tells you what’s wrong with your environment. If you’re new to cPanel, the same skills you’d use to disable a WordPress plugin from cPanel are exactly what you need here.

    Can I try MODX before putting it on Bluehost?

    Yes, and it’s worth doing. MODX runs happily on a local LAMP or XAMPP stack, the same kind of environment described in our guide to installing WordPress on a local host. Build the site locally, then move the files and import the database.

    Wrapping up

    MODX on Bluehost is one of the easier CMS installs going, provided you do things in the right order: PHP version first, database second, upload and extract third, then /setup/. Check Softaculous before you start, because a one-click install saves fifteen minutes when it’s available. Then delete setup/, rename ht.access, flip friendly_urls on, and clear the cache.

    Where shared hosting stops being the right answer is when you want per-site PHP tuning, Redis for MODX’s cache, or staging environments you control. At that point a VPS with a control panel makes more sense, and our walkthrough of launching CyberPanel on Hostinger covers what that setup looks like. If you’re still weighing MODX against the alternatives, our guide to creating a Joomla website is a fair comparison point, and the document-root and PHP-version lessons in deploying FuelPHP on hosting apply to any PHP app you put on a shared plan. Always confirm the current numbers on the official MODX download page before you install.

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email Copy Link
    Previous ArticleHow to Install Helm in Minikube and Deploy Your First Chart
    Next Article How to Run CakePHP on Cloud Hosting (2026 Guide)
    Marcus Bennett

      Marcus Bennett is GeekBlog's Android expert, covering everything from Google's Pixel line and Samsung Galaxy flagships to OnePlus, Nothing, Xiaomi and the broader Android ecosystem. He follows each Android OS release, One UI and Pixel Feature Drop, custom ROMs and the foldable wave, translating spec sheets and beta builds into hands-on guidance for readers choosing their next Android phone, tablet or wearable.

      Related Posts

      18 Mins Read

      New York vs Florida: Which State Is Better to Move To?

      15 Mins Read

      What State Is Best to Invest in Real Estate in 2026?

      15 Mins Read

      Texas vs California: Which State Is Better in 2026?

      17 Mins Read

      How to Explain Your Coding Solution in an Interview

      13 Mins Read

      Massachusetts vs Kentucky: Which State Is Better?

      12 Mins Read

      Washington vs Indiana: Which State Is Better to Live In?

      Top Posts

      Best Stores for Buying MP3 and Digital Music You Can Keep Forever (2026)

      August 2, 202515 Views

      Japan Skips Exams Until Age 10 and Teaches Character Instead. The Results Are Complicated.

      July 29, 20268 Views

      Husbands Cause More Stress Than Kids? Science Says Many Moms Feel Exactly That

      July 28, 20268 Views
      Stay In Touch
      • Facebook

      Subscribe to Updates

      Get the latest tech news from FooBar about tech, design and biz.

      Most Popular

      Best Stores for Buying MP3 and Digital Music You Can Keep Forever (2026)

      August 2, 2025912 Views

      Discord will require a face scan or ID for full access next month

      February 9, 2026770 Views

      Trade in your old phone and get up to $1,100 off a new iPhone 17 at AT&T – here’s how

      September 10, 2025382 Views
      Our Picks

      MakuluLinux’s New AI-OS Wants to Run Your Whole Desktop, Not Just Answer Questions

      August 1, 2026

      AI Tokens Got 98% Cheaper. Corporate AI Bills Are Exploding Anyway

      July 31, 2026

      Hackers Are Hijacking Hotel Wi-Fi to Steal Microsoft 365 Logins Without a Single Phishing Email

      July 30, 2026

      Subscribe to Updates

      Get the latest creative news from FooBar about art, design and business.

      Facebook
      • About Us
      • Contact us
      • Privacy Policy
      • Disclaimer
      • Terms and Conditions
      © 2026 GeekBlog

      Type above and press Enter to search. Press Esc to cancel.