Ok first things first :
1, is your phpbb database loaded to the same database name as your nuke site or vise versa. if not, they need to be so download (Export) your nuke database ( full Structure & data ) load (sql) that up into your phpbb database, assuming your Nuke prefix is nuke_ & your phpBB is phpbb_ this wont be a problem.
2, open your Nuke config.php file and edit the following :
|
Code:
|
$dbuname = "ENTER YOUR PHPBB DATABASE USERNAME";
$dbpass = "YOUR PHPBB DATABASE PASSWORD";
$dbname = "YOUR PHPBB DATABASE NAME";
$prefix = "nuke"; THIS STAYS THE SAME
$user_prefix = "nuke"; CHANGE THIS TO THIS $user_prefix = "phpbb"; |
So basically this means anyone registering on your nuke site will now become automatically a member of your phpbb forum site & vise versa.
Also I noticed your board still has a link to your Nuke forums you can remove that link in admin Modules, click edit on Forums and select not shown in modules block.
The next thing you could do is edit you header.html file, there you will find a link to forums, something like this
|
Code:
|
<a href=modules.php?name=Forums>[b]Forums</a> |
So change that link to something like this
|
Code:
|
<a href=forums[b]Forums</a></td> |
FINAL NOTE! backup both databases before trying this : Yes "Trying" I have never done this myself, however the principle is correct. If another Staff member or someone could confirm this, please do.