In setting up LDAP with JForum it seems as if I have lost the ability to log in as Admin.
See below: (from another post)
Rafael Steil wrote:The account you're using as Admin is not associated to the Administrators group. Tables are jforum_groups and jforum_user_groups.
Here's my tables
mysql> select * from jforum_groups;
+----------+----------------+-------------------+-----------+
| group_id | group_name | group_description | parent_id |
+----------+----------------+-------------------+-----------+
| 1 | General | General Users | 0 |
| 2 | Administration | Admin Users | 0 |
+----------+----------------+-------------------+-----------+
2 rows in set (0.33 sec)
mysql> select user_id, username from jforum_users;
+---------+-----------+
| user_id | username |
+---------+-----------+
| 1 | Anonymous |
| 2 | Admin |
| 3 | dcrumb1 |
| 4 | dcrumb |
+---------+-----------+
4 rows in set (0.10 sec)
mysql> select * from jforum_user_groups;
+----------+---------+
| group_id | user_id |
+----------+---------+
| 1 | 1 |
| 2 | 2 |
| 1 | 3 |
| 1 | 4 |
+----------+---------+
4 rows in set (0.01 sec)
So.. That says that Admin (user_id=2) is part of the Admin group_id
Please advise,
--Dave
[originally posted on jforum.net by Anonymous]