[eluser]Tom Glover[/eluser]
[quote author="adamp1" date="1213911780"]Hi, yes sorry Iv been very busy the last few days trying to get the next version polished off and missed your thread. OK so by the look of things did you try to change the name of the tables in the database? Maybe the table prefix or something.[/quote]
Changes all table names from 'be_' to ''. so that it used all the default CI prefix, which is set to '103_'.
The actual fault is this:
Code:
SELECT users.id, users.username, users.email, users.active, users.last_visit, users.created, users.modified, groups.name `group`, groups.id `group_id` FROM (`103_users` users) JOIN `103_acl_groups` groups ON groups.id03_users.group WHERE users.id = '1'
It should be this:
Code:
SELECT users.id, users.username, users.email, users.active, users.last_visit, users.created, users.modified, groups.name `group`, groups.id `group_id` FROM (`103_users` users) JOIN `103_acl_groups` groups ON groups.id=103_users.group WHERE users.id = '1'