5
Quote:
Dave_L wrote:
If you can't use phpmyadmin, do you know how to use MySQL from the command line?
Check that there's a row in the groups_users_link table with groupid = 1 (XOOPS_GROUP_ADMIN) and uid = (your user ID). If not, try inserting that row.
Does this look right to you? IT seems to me to be showing UID as an INT, not a string:
mysql> describe dmembr_groups_users_link;
+---------+-----------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------+-----------------------+------+-----+---------+----------------+
| linkid | mediumint(8) unsigned | | PRI | NULL | auto_increment |
| groupid | smallint(5) unsigned | | MUL | 0 | |
| uid | mediumint(8) unsigned | | | 0 | |
+---------+-----------------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> select groupid, uid from dmembr_groups_users_link;
+---------+-----+
| groupid | uid |
+---------+-----+
| 1 | 1 |
| 2 | 1 |
+---------+-----+
2 rows in set (0.01 sec)