Forum Software Without MySQL in 2026: Simple Alternatives That Just Work

Fred Fred ·16 April 2026 à 11:16·4 min read·60· 0 comment

Installing a forum in 2026 is still more complicated than it needs to be.
Popular platforms like IPB, phpBB, Flarum, XenForo, and MyBB all require MySQL or MariaDB.
That means:

  • Creating a database
  • Setting up users and permissions
  • Running a schema installer
  • Maintaining a database server

For many use cases, that’s unnecessary overhead.


Why forums still rely on MySQL

Forum software has traditionally relied on relational databases since the 1990s. The structure (categories → threads → posts) maps naturally to SQL tables.
Databases also provide:

  • Efficient search
  • User management
  • Permissions systems
  • Reliable concurrent writes

These advantages still matter—especially at scale.
But for small to medium communities, simpler approaches now exist.


Best forum software without MySQL in 2026

Flatboard

Flatboard is currently the only fully featured and actively maintained PHP forum that runs without a database server.
It stores everything in structured JSON files:

  • Users
  • Posts
  • Settings
  • Plugins

What you get without a database

  • Categories and permissions
  • User accounts and profiles
  • Reactions and mentions
  • RSS feeds
  • File and image uploads
  • REST API
  • Built-in security (CSRF, 2FA, rate limiting)

Why it’s different

  • No database setup
  • No credentials to manage
  • Works on basic shared hosting
  • Backup=copy files
  • Migration=move folder

A built-in upgrade path (JSON → SQLite)

One of the main concerns with flat-file systems is scalability.
Flatboard solves this with a built-in upgrade to SQLite.
SQLite is a full SQL database engine—but without a server. Everything runs from a single file.
With Flatboard, switching to SQLite is done in one click:

  • No installation
  • No server configuration
  • No manual migration
  • No hosting change

You go from JSON files to a full SQL database seamlessly.


Why this matters

This fundamentally changes how you should think about Flatboard.
It’s not just “forum software without MySQL.”
It’s a progressive architecture:

  • Start with zero infrastructure
  • Scale when needed
  • Never deal with a database server

Compared to phpBB or Flarum, you’re not forced to over-engineer from day one.


Other alternatives (limited)

There are a few related projects, but none match the same balance of simplicity and features:

  • Phorum — outdated, minimal maintenance
  • FluxBB — MySQL-based, some SQLite forks
  • Chyrp Lite — closer to a blog than a forum

Also worth mentioning:

  • NodeBB — modern, but typically requires a database
  • Discourse — powerful, but heavy and PostgreSQL-based

When a no-MySQL forum makes sense

This approach works best if:

  • You’re on shared hosting without a database
  • You want a fast, simple setup
  • Your community is small to medium-sized
  • You prioritize portability and easy backups

Limitations to consider

Flat-file systems are not perfect:

  • Less efficient at very large scale
  • File locking can impact concurrent writes
  • Advanced search is limited without SQL

These limitations are largely resolved after switching to SQLite.


Setup comparison

StepTraditional forumsFlatboard
Database requiredYesNo
SQL configurationYesNo
Installation time20–45 min3–5 min
MigrationComplexFile copy
ScalabilityHighProgressive

Hosting and cost

Flatboard runs on:

  • Basic shared hosting ($2–4/month)
  • PHP-only environments
  • Lightweight VPS setups

No database server required.


FAQ

Can you run a PHP forum without MySQL?

Yes. Flatboard stores data in JSON files instead of using a database server.


Is flat-file forum software fast enough?

Yes—for small to medium communities. Performance limitations appear at larger scale.


Is SQLite a replacement for MySQL?

SQLite is a lightweight alternative without a server. MySQL is still better suited for very large, high-traffic applications.


Conclusion

Forum software without MySQL doesn’t replace traditional solutions—but it solves a different problem: simplicity.
Flatboard stands out by combining:

  • Instant setup
  • No infrastructure
  • Seamless upgrade to SQLite

For most projects, that’s a more practical approach than running a full database stack.

Share this article:

Fred

👨‍💻 Flatboard Founder 🔧 Flatboard Core Developer.
Full-Stack Web Developer
Expert in Portable and Interoperable Solutions (PHP/JSON)

Member since December 2025

0 comment

No comments yet. Be the first!

Log in to leave a comment.