Zero Override wrote: The fastest way, not sure about the quality of it, is to change the name of the table names in includes/constants.php. Install the three forums in one database with three different prefixes. Then choose one prefix you like best!
Share the users table and you're done. Not sure if you need to share the user_groups table too, perhaps you should try that on your test boards!
Zero Override wrote: You don't have to delete the prefix. Let me explain;
That should work, I think!
- Install the three boards
- Change the includes/constants.php for two of the boards, so they use the prefix of the third board, for the users table
- Delete the two tables that are not being used after this modification, so you can test if it is working or not
REMARK: "Our newest member" is stored in the config table (the user_id). That will not be shared, so it will display the newest member for each board!
Zero Override wrote: Share the users table and you're done. Not sure if you need to share the user_groups table too, perhaps you should try that on your test boards!
Since the permissions don't have to be the same for all boards, I doubt that those tables need to be shared...Raimon wrote: You need also the user_group table what i have writting. on my previous message.
and acl_groups , acl_users for the users and groups (like registerd and guest etc) permissions
Zero Override wrote: Did you change the names of the tables in includes/constants.php? I don't understand what you just did, to try and make it work...
Handyman wrote: try installing to forums into the same database with different prefixes… then on one of the forums, open the includes/constants.php and change the $table_prefix for the users, user_group and groups table to the actual table name of the users table you have in the database.
example:
board 1Board 2
- Table Prefix phpbb_
that should get you going in the right direction… I would be interested to hear how it works.
- Table Prefix phpbb3_
- Change includes/constants.php $table_prefix . 'users' to 'phpbb_users'
- Change $table_prefix . 'user_group' to phpbb_user_group
- Change $table_prefix . 'groups' to phpbb_groups