BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Native PHP Sessions icon
Maintained Tested up to 6.9.9 #10 in comments

Native PHP Sessions

Use native PHP sessions and stay horizontally scalable. Better living through superior technology.

Active installs10K+10K+ tier
Downloads · 30d15.8K▼ -10% vs prev. 30d
Rating4.9/516 reviews
Health score46/100Fair
All-time downloads1.4MSince Sep 2014
Support resolved0 / 10% in last 2 months
RequiresWP 5.3PHP 7.4+
Downloads · 7d4.4K▲ +20% week over week
Our verdict

Use with caution

Native PHP Sessions works, but test it on a staging site before relying on it in 2026. It runs on 10K+ sites, is rated 4.9/5 and was last updated 10 months ago, and scores 46/100 on our health check.

  • Proven at scale on 10K+ active sites
  • Only tested up to WordPress 6.9 (latest is 7.1)

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

311622933Jun 28Aug 11Sep 25
Yesterday924
Daily average (1y)534
Peak day2,104Dec 4, 2025
Last 12 months194.3K

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Native PHP Sessions stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
comments >100 8,724 Best comments plugins →
sessions #2 4,423 Best sessions plugins →

Version adoption

Share of active sites per release.

  • 1.487.5%
  • 1.26.3%
  • Other6.3%

Rating breakdown

★★★★★★★★★★ 4.9 from 16 reviews

  • 5★87.5%
  • 4★12.5%
  • 3★0.00%
  • 2★0.00%
  • 1★0.00%

About Native PHP Sessions

From the official readme · v1.4.5

Description

WordPress core does not use PHP sessions, but sometimes they are required by your use-case, a plugin or theme.

This plugin implements PHP’s native session handlers, backed by the WordPress database. This allows plugins, themes, and custom code to safely use PHP $_SESSIONs in a distributed environment where PHP’s default tempfile storage just won’t work.

Note that primary development is on GitHub if you would like to contribute:

https://github.com/pantheon-systems/wp-native-php-sessions

Configuration

By default the session lifetime is set to 0, which is until the browser is closed.

To override this use the pantheon_session_expiration filter before the Native PHP Sessions plugin is loaded. For example a small Must-use plugin (a.k.a. mu-plugin) could contain:

<?php
function my_session_expiration_override() {
    return 60*60*4; // 4 hours
}
add_filter( 'pantheon_session_expiration', 'my_session_expiration_override' );<h3>CLI Commands</h3>

wp pantheon session add-index

Added in 1.4.0. This command should be run if your installation of the plugin occurred before the addition of the primary ID key to the session table in version 1.2.2. You will be automatically notified when you visit any admin page if this is the case. If there’s no message, your version is good to go. Note that this command is non-destructive, a new table will be created and the existing one preserved in a backup state until you have verified that the upgrade is functioning as expected.

wp pantheon session primary-key-finalize

Added in 1.4.0. If you have run the add-index command and have verified that the new table is functioning correctly, running the primary-key-finalize command will perform a database cleanup and remove the backup table.

wp pantheon session primary-key-revert

Added in 1.4.0. If you have run the add-index command and something unexpected has occurred, just run the primary-key-revert command and the backup table will immediately be returned to being the active table.

WordPress Multisite

As of 1.4.2 the add-index, primary-key-add and primary-key-revert commands are fully multisite compatible.

Contributing

See CONTRIBUTING.md for information on contributing.

Troubleshooting

If you see an error like “Fatal error: session_start(): Failed to initialize storage module:” or “Warning: ini_set(): A session is active.”, then you likely have a plugin that is starting a session before WP Native PHP Sessions is loading.

To fix, create a new file at wp-content/mu-plugins/000-loader.php and include the following:

<?php
if (file_exists(WP_PLUGIN_DIR . '/wp-native-php-sessions/pantheon-sessions.php')) {
    require_once WP_PLUGIN_DIR . '/wp-native-php-sessions/pantheon-sessions.php';
}

This mu-plugin will load WP Native PHP Sessions before all other plugins, while letting you still use the WordPress plugin updater to keep the plugin up-to-date.

Installation

  1. Upload to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

That’s it!

Frequently asked questions

Why not use another session plugin?

This implements the built-in PHP session handling functions, rather than introducing anything custom. That way you can use built-in language functions like the $_SESSION superglobal and session_start() in your code. Everything else will “just work”.

Why store them in the database?

PHP’s fallback default functionality is to allow sessions to be stored in a temporary file. This is what most code that invokes sessions uses by default, and in simple use-cases it works, which is why so many plugins do it. However, if you intend to scale your application, local tempfiles are a dangerous choice. They are not shared between different instances of the application, producing erratic behavior that can be impossible to debug. By storing them in the database the state of the sessions is shared across all application instances.

Where do I report security bugs found in this plugin?

Please report security bugs found in the source code of the WP Native PHP Sessions plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin.

Changelog

Adds a WP-CLI command to add an index to the sessions table if one does not exist already. If you installed this plugin before version 1.2.2, you likely need to run this command. However, regardless of version at installation a notice will appear in your admin dashboard if your database table is missing the index. If no notice appears, no action is necessary.

1.4.5 (December 2025)

  • Compatibility: Supports WordPress 6.9

1.4.4 (September 17, 2025)

  • Compatibility: Supports PHP 8.4
  • Increases minimum supported PHP version to 7.4
  • Increases minimum supported WordPress version to 5.3
  • Update plugin name in README files and main plugin file to “Native PHP Sessions” [#312]
  • Update Troubleshooting section in README to be more defensive in mu-plugin [#308]

1.4.3 (November 13, 2023)

  • Fixed a PHP warning when running the pantheon session add-index command on a single site installation. [#285]

1.4.2 (November 8, 2023)

  • Fixed an issue with the pantheon session add-index PHP warning. [#276]
  • Fixed a syntax issue with the suggested WP CLI commands [#278]
  • Made wp pantheon session add-index, wp pantheon session primary-key-finalize, and wp pantheon session primary-key-revert fully multisite compatible. [#275]

1.4.1 (October 23, 2023)

  • Fixed an issue with the pantheon session add-index command not working properly on WP multisite [#270]
  • Made the notice added in 1.4.0 dismissable (stores in user meta) & hides for multisite (an update is coming to iterate through all sites on a network) [#271]

1.4.0 (October 17, 2023)

  • Adds new CLI command to add a Primary Column (id) to the pantheon_sessions table for users who do not have one. [#265]
  • Adds alert to dashboard for users who need to run the command.
  • 8.3 compatibility and code quality updates
  • Updates Pantheon WP Coding Standards to 2.0 [#264]

Full changelog on WordPress.org →

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best Native PHP Sessions alternatives

All comments plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 Akismet Anti-spam: Spam Protection Akismet Anti-spam: Spam Protection The best anti-spam protection to block spam comments and spam in a contact form. The most… by Automattic 5M+ ★★★★★★★★★★ 4.7 (1.2K) 1 month ago 94
2 Disable Comments – Remove Comments & Stop Spam [Multi-Site Support] Disable Comments Disable comments site-wide or by post type, delete existing comments in bulk, and block… by WPDeveloper 1M+ ★★★★★★★★★★ 4.7 (281) 4 weeks ago 88
3 Antispam Bee Antispam Bee Sophisticated antispam plugin for effective daily comment and trackback spam-fighting… by pluginkollektiv 700K+ ★★★★★★★★★★ 4.8 (226) 1 month ago 78
4 Gravatar Enhanced – Avatars, Profiles, and Privacy Gravatar Enhanced – Avatars, Profiles, and Privacy The official Gravatar plugin, featuring privacy-focused settings, easy profile updates, and… by Automattic 100K+ ★★★★★★★★★★ 5 (3) 6 months ago 54
5 Disable Comments Disable Comments Disable Comments - easy tool to disable comments for your blog posts, and pages. Admin can… by rbplugins 100K+ ★★★★★★★★★★ 3.8 (25) 1 day ago 86
6 Disqus Comment System Disqus Comment System Disqus is the web's most popular comment system. Use Disqus to increase engagement, retain… by Disqus 30K+ ★★★★★★★★★★ 2.7 (219) 3 days ago 68
7 Cookies for Comments Cookies for Comments Sets a cookie on a random URL that is then checked when a comment is posted. If the cookie… by Donncha O Caoimh (a11n) 10K+ ★★★★★★★★★★ 4.9 (18) 7 years ago 42
8 Throws SPAM Away Throws SPAM Away A powerful anti-spam plugin that silently discards spam comments without showing any error… by ウェブ屋のさとーさん 10K+ ★★★★★★★★★★ 5 (6) 1 month ago 85
9 Subscribe to Comments Subscribe to Comments Subscribe to Comments allows commenters on an entry to subscribe to e-mail notifications… by Mark Jaquith 10K+ ★★★★★★★★★★ 3.9 (14) 2 years ago 41
11 No Page Comment No Page Comment An admin interface to control the default comment and trackback settings on new posts… by Seth Alling 10K+ ★★★★★★★★★★ 5 (22) 10 months ago 62

FAQ

Native PHP Sessions: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 26, 2026

Is Native PHP Sessions free?

Yes. Native PHP Sessions is free to download and use from the official WordPress.org plugin directory.

Is Native PHP Sessions safe to use in 2026?

Native PHP Sessions works, but test it on a staging site before relying on it in 2026. It runs on 10K+ sites, is rated 4.9/5 and was last updated 10 months ago, and scores 46/100 on our health check.

How many websites use Native PHP Sessions?

Native PHP Sessions is active on 10K+ WordPress websites and has been downloaded 1,419,388 times since it launched in September 2014. It was downloaded 15,818 times in the last 30 days.

Does Native PHP Sessions work with WordPress 7.1?

Native PHP Sessions is officially tested up to WordPress 6.9.9, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

What PHP version does Native PHP Sessions need?

Native PHP Sessions requires PHP 7.4 or higher. Most hosts run PHP 8.x today, so it works on any modern WordPress hosting.

When was Native PHP Sessions last updated?

The latest version, 1.4.5, was released on December 4, 2025 (10 months ago).

Who makes Native PHP Sessions?

Native PHP Sessions is developed and maintained by Pantheon Systems.

What are the best alternatives to Native PHP Sessions?

The most popular alternatives to Native PHP Sessions are Akismet Anti-spam: Spam Pro… (5M+ installs), Disable Comments (1M+ installs) and Antispam Bee (700K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.