• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Admin role is gone?

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

When I login as Admin I do not see Admin Panel link at the bottom of the screen, why so?

I think I might have assigned Admin user to a different role though.

Prior to that when I login as Admin I would not see any category forums in configuration even though I could see them when I log out.

Could anyone explain? Did I mess up some role assignments or is is a bug?

Thank you.
[originally posted on jforum.net by AnotherGuest]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You probably made your Admin user a "non-admin."
[originally posted on jforum.net by GatorBait3]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nice...
Is that it? Now I have to reinstall jforum?

Thank you.
[originally posted on jforum.net by AnotherGuest]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you happen to create another admin account? This can be a good idea in just this type of situation .. which I know doesn't help you now if you didn't.

You could try altering the jforum_user_groups table ... make sure the Admin user (ID #2) has an Admin Group (Group #2) in the group_id field. You may want to confirm the Admin UID too (from the jforum_groups table).

But here is a short list of what it should look like. Your Admin acct UID results should be missing the "group ID 2 / user_id 2" entry.

select * from jforum_user_groups;
+----------+---------+
| group_id | user_id |
+----------+---------+
| 1 | 1 |
| 2 | 2 | <----Admin account, Admin Group
| 1 | 2 | <----Admin account, General Group
| 2 | 3 |
| 1 | 3 |


[originally posted on jforum.net by GatorBait3]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you.
I was missing:
| 2 | 2 | <----Admin account, Admin Group

After altering the table it works fine!


[originally posted on jforum.net by AnotherGuest]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

AnotherGuest wrote:Thank you.
I was missing:
| 2 | 2 | <----Admin account, Admin Group

After altering the table it works fine!


Great! Glad to hear that worked for you!
[originally posted on jforum.net by GatorBait3]
 
It will give me the powers of the gods. Not bad for a tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic