Simple enough then.
Open classes/forums/phpBB_2.php
Find:
Code:
$this->DB->prefix . "users
Replace:
You will of course have to change nuke_users in that file if you ever change the prefix for PHP-Nuke in the future.
Here is something unrelated, but rather some code that I used with PHP-Nuke 7.3 for a news module (not sure if it will work with your version). I put this code into a file named index.php in a folder called Forum_News that I placed in the modules folder in PHP-Nuke:
Code:
<?php
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
global $index;
$index = 1;
include("header.php");
// generated EP-Dev Forum News code
require_once("forum-news/news.php");
$forum_obj = new EP_Dev_Forum_News();
$forum_obj->display_News();
include("footer.php");
The above assumes the script is installed to /forum-news/ on your website.
You can load that module without any modification right into PHP-Nuke and it should pick it right up without any problems with the default forum news settings.