secondtruth/flarum-phpbb-migrate

Allows migrating phpbb to flarum

Maintainers

👁 secondtruth

Package info

github.com/secondtruth/flarum-phpbb-migrate

Issues

Type:flarum-extension

pkg:composer/secondtruth/flarum-phpbb-migrate

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 1

dev-master 2021-04-17 17:21 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

proprietary bb65f0d7b15b0f29b496c596eaad64a38dc9cebe

debugextensionflarumtelescopebokt

This package is auto-updated.

Last update: 2026-06-18 04:52:01 UTC


README

This extension allows migrating a phpbb forum to flarum.

Please note:

  • duplicate email addresses get subaddressing added with the user id: test@local.test becomes test+34@local.test
  • usernames are normalised to be only strings and numbers, the 3 minimum limit has bee reduced to 1
  • this extension might need customisation for your specific phpbb forum, file an issue with questions please

Installation

Use Bazaar or install using composer:

$ composer require bokt/flarum-phpbb-migrate

After that enable the extension in your admin area.

Based on a migration from bokt.nl using PhpBB 3.x.

Configuration

Inside your config.php create a new key phpbb with the database information for the PhpBB forum you want to migrate, like so:

return [
 'url' => '..',
 // .. other stuff
 'phpbb' => [
 'driver' => 'mysql',
 'host' => 'localhost',
 'database' => 'phpbb',
 'username' => 'root',
 'password' => '',
 'charset' => 'utf8mb4',
 'collation' => 'utf8mb4_unicode_ci',
 'prefix' => '',
 'port' => '3306',
 'strict' => false,
 ]
];

Use

Run the command.

php flarum phpbb:migrate

You should be able to rerun this command.