Saya gembira sekali setelah berhasil berjam-jam menggunakan skill logic & ramalan perdukunan saya dalam melakukan troubleshooting pada kasus flarum ini. Ternyata simple banget, cukup hapus saja salah satu parameter di file config.php

Lebih jelasnya berikut saya tunjukkan perubahan kodenya
Sebelum
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'yourdb_inhost',
'username' => 'yourun_inhost',
'password' => 'yourpwd_inhost',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => false, //<---JUST REMOVE THIS PARAMETER
),
'url' => 'https://fgate.000webhostapp.com/',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
);
Sesudah
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'yourdb_inhost',
'username' => 'yourun_inhost',
'password' => 'yourpwd_inhost',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
),
'url' => 'https://fgate.000webhostapp.com/',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
);
Lihat Bukti