I have looked at the details of your database and they seem to be standard.
Are you sure that you are connecting to the correct phpbb 2 database? I am out of explanations. The only thing you can do now is debug.
In the EP-Dev Forum News script folder open classes/sources/Forum/phpBB2.php .
Find:
PHP Code:
// error if no posts
if (!$this->DB->rows())
{
$this->ERROR->go("no_posts_found");
return false;
}
And before it place:
PHP Code:
var_dump($this->DB->debug());
Then visit your script and post the output here (you may have to view the html source of your webpage). The above code will output the queries that have been executed against the database. You can then run those queries yourself to see if you get any results. If you get results while the script is not, it is safe to assume you are accessing the wrong database.