Hello Lonnie,
We can now give the database prefix on install, but the old bf_ prefix is still used in a file:
A Database Error Occurred Error Number: 1146 Table 'database.bf_users' doesn't exist SELECT role_name, COUNT(1) as count FROM bf_users, bf_roles WHERE bf_users.role_id = bf_roles.role_id GROUP BY bf_users.role_id Filename: /home/xxx/public_html/xxx/core_modules/users/models/user_model.php Line Number: 114
You might have already fixed this now, but change the beginning part of this function to:
$prefix = $this->db->dbprefix;
$sql = "SELECT role_name, COUNT(1) as count
FROM {$prefix}users, {$prefix}roles
WHERE {$prefix}users.role_id = {$prefix}roles.role_id
GROUP BY {$prefix}users.role_id";It has been fixed in the latest develop branch.
From now on, could you do me a favor and report errors like this in the issue tracker at GitHub? That will help me keep track of things better. Thanks!