Got it working. You need to do a few edits to get the merge System working:
open /merge/resources/class_converter.php, search:
Next open /merge/resources/modules/threads.php, search:
Last open /merge/boards/fluxbb/posts.php, search:
It worked for me after that changes.
open /merge/resources/class_converter.php, search:
if(!$connection || $connection == -1)
and replace withif(!$connection || $connection === -1)
Next open /merge/resources/modules/threads.php, search:
'import_poll',
and add in a new line after that:'import_firstpost',
Last open /merge/boards/fluxbb/posts.php, search:
$insert_data['message'] = encode_to_utf8($this->bbcode_parser->convert($data['message']), "posts", "posts");
and add after that:if(strlen($insert_data['message']) > 65535)
{
$insert_data['message'] = substr($insert_data['message'], 0, 65532)."...";
}
It worked for me after that changes.
Support PMs will be ignored!