Henrik, the problem is solved - the doubled topic is removed :) I hope that you don't object :) You can't unlock a topic (here), once you locked it. It's an option in
setup_options.php, you have it, too:
$userUnlock=0;If it's set to 1, you could.
As per the multiple boards - I'm afraid that no. In one board you can have as many
forums as you like, but not many independent
boards with one copy of the software. One board needs its own database
(6),
or at least separate tables
(another 6 ones) in the same database - if your server has only 1 database. So, the same script cannot execute opposite tasks from different databases (or tables) in the same time :)
You can do what you want the following ways:
1. To use the "categories" feature of miniBB and to separate your forums in categories - with a
supertitle. As the forums here (it's only an example):
http://www.clubpierrot.com/PIERROT/test_forum/index.php?(Will be online after a couple of hours, because some server's Seagate HDDs had crashed this night, I've been said.)
2. To install another miniBB copy in a separate directory with a separate database.
3. To install another miniBB copy in a separate directory with other 6 tables in the same database. This 6 tables, in
setup_options.php:
$Tf='minibbtable_forums';
$Tp='minibbtable_posts';
$Tt='minibbtable_topics';
$Tu='minibbtable_users';
$Ts='minibbtable_send_mails';
$Tb='minibbtable_banned';respectively renamed for example:
$Tf='minibbtable1_forums';
$Tp='minibbtable1_posts';
$Tt='minibbtable1_topics';
$Tu='minibbtable1_users';
$Ts='minibbtable1_send_mails';
$Tb='minibbtable1_banned';etc.