PHP 8.4 Hosting Compatibility: Which Providers Support It in 2026

PHP 8.4 Is Six Months Old: Where Does Hosting Support Stand?

PHP 8.4 launched on November 21, 2024, bringing property hooks, asymmetric visibility, the #[\Deprecated] attribute, and a batch of performance improvements. Six months later, the question for site owners and developers is straightforward: can you actually run PHP 8.4 on your current hosting plan?

We surveyed the major shared, managed WordPress, cloud, and VPS hosting providers to find out which ones offer PHP 8.4 today, which are still stuck on 8.3 or earlier, and what you should know before switching.

Why PHP 8.4 Matters for Your Hosting Stack

PHP 8.4 receives active bug and security fixes through December 31, 2026, with security-only patches extending to December 31, 2028. Meanwhile, PHP 8.2 exits active support at the end of 2024 and enters security-only mode until December 2026. PHP 8.3 remains actively supported through December 2025.

Beyond the support timeline, PHP 8.4 delivers real performance gains. Internal benchmarks from the PHP development team show 5-10% throughput improvements on typical WordPress workloads compared to 8.3. Property hooks reduce boilerplate code, and the new DOM API overhaul makes HTML5 parsing native.

For WordPress sites specifically, PHP 8.4 compatibility was confirmed in WordPress 6.7, released in November 2024. If you run WooCommerce, Elementor, or other major plugins, most have shipped 8.4-compatible updates by early 2025.

Providers With Full PHP 8.4 Support

Kinsta

Kinsta added PHP 8.4 to its managed WordPress platform on November 22, 2024, one day after the official release. Users can switch PHP versions per environment through the MyKinsta dashboard. Kinsta also supports PHP 8.1, 8.2, 8.3, and 8.5 (added after its November 2025 release).

Cloudways (by DigitalOcean)

Cloudways rolled out PHP 8.4 support in December 2024 across all server providers (DigitalOcean, Vultr, Linode, AWS, and Google Cloud). The version switch is available in the server management panel under Settings & Packages. Cloudways compiles PHP from source with OPcache and Redis extensions pre-configured.

SiteGround

SiteGround made PHP 8.4 available in January 2025 on all shared, cloud, and reseller plans. Users can change PHP versions per site through Site Tools > Devs > PHP Manager. SiteGround also offers an ultrafast PHP setup that pairs OPcache with their custom SuperCacher system.

Hostinger

Hostinger enabled PHP 8.4 across its shared and cloud hosting plans in December 2024. The switch is accessible through hPanel under Advanced > PHP Configuration. All plans from Single through Cloud Startup include access to PHP 8.4.

DigitalOcean App Platform

DigitalOcean’s App Platform supports PHP 8.4 through its buildpack system. Developers specify the PHP version in their composer.json file or through the app spec YAML. Support went live in December 2024.

Providers With Partial or Delayed Support

GoDaddy

GoDaddy’s shared hosting plans added PHP 8.4 in March 2025, roughly four months after release. Their managed WordPress product followed in April 2025. If you’re on a legacy cPanel plan, you may need to contact support to get 8.4 enabled, as the PHP selector in older interfaces sometimes lags behind.

Bluehost

Bluehost made PHP 8.4 available on shared and VPS plans in February 2025. Their managed WordPress hosting (WP Pro) received 8.4 support in March 2025. The PHP version selector is found under Advanced > MultiPHP Manager in cPanel.

DreamHost

DreamHost added PHP 8.4 to shared hosting in January 2025 and to DreamPress (managed WordPress) in February 2025. Users can switch versions through the panel under Domains > Manage Domains > Edit. DreamHost has historically been quick to adopt new PHP versions.

InMotion Hosting

InMotion Hosting rolled out PHP 8.4 on VPS and dedicated plans in January 2025. Shared hosting plans received access in March 2025. The delay on shared plans was attributed to extension compatibility testing across their multi-tenant infrastructure.

Comparison Table: PHP 8.4 Support by Provider

Provider Hosting Type PHP 8.4 Available Date Added Switch Method
Kinsta Managed WordPress Yes Nov 2024 MyKinsta Dashboard
Cloudways Managed Cloud Yes Dec 2024 Server Settings
SiteGround Shared/Cloud Yes Jan 2025 Site Tools PHP Manager
Hostinger Shared/Cloud Yes Dec 2024 hPanel PHP Config
DigitalOcean App Platform Yes Dec 2024 composer.json / app spec
DreamHost Shared/DreamPress Yes Jan-Feb 2025 Panel Domain Settings
Bluehost Shared/VPS/WP Pro Yes Feb-Mar 2025 cPanel MultiPHP
GoDaddy Shared/Managed WP Yes Mar-Apr 2025 cPanel / Support
InMotion VPS/Shared Yes Jan-Mar 2025 cPanel MultiPHP
Namecheap Shared Partial Apr 2025 cPanel PHP Selector
HostGator Shared Partial Apr 2025 cPanel PHP Selector

VPS and Cloud: You Control the Timeline

If you run an unmanaged VPS on providers like Vultr, Linode, Hetzner, or AWS EC2, PHP 8.4 has been available since day one through package managers. On Ubuntu 24.04 LTS, you can install it via Ondrej Sury’s PPA (ppa:ondrej/php), which had 8.4 packages ready on release day. On AlmaLinux and Rocky Linux, the Remi repository provides PHP 8.4 RPMs.

For containerized deployments, the official php:8.4 Docker images were published on Docker Hub within hours of the GA release. If you deploy through Kubernetes, AWS ECS, or Google Cloud Run, you’ve had access to PHP 8.4 since November 2024 with zero dependency on your hosting provider’s update schedule.

What to Check Before Switching to PHP 8.4

Extension Compatibility

Most popular PHP extensions (mysqli, PDO, GD, curl, mbstring, intl) work without issues on 8.4. However, some older PECL extensions may not have 8.4-compatible builds yet. Check your extension list with php -m and verify each one has an 8.4-compatible release.

Deprecated Functions

PHP 8.4 deprecates several functions and patterns. Notable deprecations include implicit nullable parameter types, certain DOM classes (replaced by the new spec-compliant DOM API), and the session_set_save_handler() with individual callbacks. Run your codebase through PHPStan or Psalm at level 5+ to catch deprecation warnings before switching.

WordPress Plugin Compatibility

While WordPress core supports PHP 8.4, individual plugins may lag behind. Before switching, enable WP_DEBUG on a staging environment and test your full plugin stack. The WordPress Plugin Compatibility Checker can flag known issues. As of May 2026, over 95% of the top 200 WordPress plugins are confirmed compatible with PHP 8.4.

PHP 8.5 Is Already Here: Should You Skip 8.4?

PHP 8.5 was released on November 20, 2025, and some providers (Kinsta, Cloudways) already support it. However, skipping 8.4 entirely is not advisable for most sites. PHP 8.4 has had six months of bug fixes and is now a stable, battle-tested release. PHP 8.5, while supported, is still in its early patch cycle.

For production sites, PHP 8.4 represents the sweet spot: new enough to benefit from performance improvements and language features, mature enough that edge-case bugs have been resolved. Plan to move to 8.5 later in 2026 once it has accumulated several point releases.

Recommendations by Use Case

WordPress Site Owners on Shared Hosting

If your host offers PHP 8.4, switch now. Test on staging first, but the compatibility situation is excellent. The performance improvement alone (faster page generation, lower TTFB) justifies the 10-minute version change.

Developers Running Custom PHP Applications

Run your test suite against PHP 8.4 locally using Docker (docker run --rm -v $(pwd):/app php:8.4-cli php /app/vendor/bin/phpunit). Fix any deprecation notices, then deploy. Property hooks and asymmetric visibility are worth adopting in new code.

Agencies Managing Multiple Client Sites

Prioritize managed hosts that let you set PHP versions per site (Kinsta, Cloudways, SiteGround). This lets you migrate clients individually rather than forcing a fleet-wide upgrade. Document which clients are on which version and set calendar reminders for PHP 8.2’s end-of-security date (December 2026).

The Bottom Line

As of May 2026, PHP 8.4 hosting support is widespread. Every major provider now offers it, though the timeline ranged from same-day (Kinsta) to four months post-release (GoDaddy shared hosting). The days of waiting a year for your host to support a new PHP version are largely over.

If you’re still running PHP 8.2 or 8.3, now is the time to upgrade. PHP 8.4 is stable, well-supported by the WordPress ecosystem, and delivers measurable performance gains. Check your host’s PHP version selector, test on staging, and make the switch.