• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Control Panel admin URL is missing

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Most likely your SSO user in not in a group that has admin priviledges. You'll need to log in as the native admin user and add this SSO user to the admin group.
[originally posted on jforum.net by monroe]
 
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
With Cookie based SSO, when user gets directed to Jforum, I am expecting to see a link to control panel for managing the forum. But I don't see it.

Can someone tell me, which file has the code for Control panel URL, so I can check to see, if I screwed-up something. Is there an URL, I can hit for control panel, after successful login as admin.

Any advise will help...since I am totally stuck.

Thanks
MJ


[originally posted on jforum.net by sf_techie]
 
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
SSO user(username: Admin) is there in jforum database as admin. I verified that in jforum_user_groups table.

If I can get answer to following two questions, I can debug why link is not showing-up(since I made some template changes, but not sure how control panel link got removed)

1. Which file has link for Admin control panel
2. What is the URL for native login

Thanks..
Jain




[originally posted on jforum.net by sf_techie]
 
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
Rights are based on User id NUMBERS not names. Generally, when you do an SSO login, a new JForum user entry is created, if one doesn't exist. So, even though your user login name is admin, it's id number (DB primary key) is not the same. And so, it is not considered to be an admin because it's NUMERIC id is not in the admin group membership.

That said, a general process for granting SSO users admin rights would be to do the following:

1) Turn on SSO and log in as the ID you want to be an admin user (creates the JForum_Users entry)

2) Turn off SSO (modify config info) and log in as default admin user (see install docs)

3) Add the new SSO admin user to the admin group

4) Turn SSO back on.
[originally posted on jforum.net by monroe]
 
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
Username ''Admin' is already added to admin group. Following is evidence:

SELECT group_name FROM jforum_groups, jforum_user_groups, jforum_users WHERE
jforum_groups.group_id = jforum_user_groups.group_id AND
jforum_users.user_id = jforum_user_groups.user_id AND
jforum_users.username = 'Admin';

Above query returns 'Administration'.

After above, when I SSO with user "Admin", I should be seeing control panel link???

Please help..this gating beta launch of my website...

Thanks
Jain
[originally posted on jforum.net by sf_techie]
 
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
It may be possible that your "Administration" group has the wrong permissions, for any reason. If jforum_roles, check if it has "perm_administration" associtated.

The URL to the admin panel is /admBase/login.page

Rafael
[originally posted on jforum.net by Rafael Steil]
 
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
I have SSO enabled, but I could not get to admin link. When I follow admBase/login.page directly it says Registration of new users is disabled.

Also, I specified admin/admin as username password. How can I use it to login as admin when SSO is enabled?

Basically I wanted to get to admin panel when SSO is enabled.
[originally posted on jforum.net by shalinjshah]
 
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 need to add an SSO user to your admin group. To do this, you need to:

1) Change your config file to on SSO and log in to jForum with the id you want to use as an admin. This will create a user entry in jforum's user table.

2) Change your config file to turn OFF SSO, restart the server, and log in to jForum with the default admin id (created when you installed jForum).

3) Go to the groups admin screen and add the new SSO user to the admin group.

Turn back on SSO and your SSO admin should now work.
[originally posted on jforum.net by monroe]
 
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
em..

I have the same problem with shalinjshah, and have follow advise from monroe.. but it's not solve my problem yet. Have it solve ur problem shalinjshah?

And this is chunk of the CookieSSO i compiled (just incase it's related to this problem):


[originally posted on jforum.net by Vilisini]
 
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
Hi Vilisini,

With workaround suggested monroe, I can get one of my apps user to be admin. What I did is added him through SSO in JForum system, then turn of SSO and added my apps user to admin group.

Now, turn SSO back on. With this now my own app user is admin and he can see admin panel link.

Let me know if this doesn't work for you.

Regards,
Shalin
[originally posted on jforum.net by shalinjshah]
 
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
sorry for not replying soon XD..

umm.. it still doesn't work in my case , jforum keep saying "Registration of new users is disabled." when i click admin control panel button. Can u please show me ur sso configuration shalinjsah?

Regards,
Vilisini
[originally posted on jforum.net by Vilisini]
 
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
Hi Vilisini,

since i turn on sso, i missing the admin link too.

Do you have found a solution for missing admin control panel link?

Regards,
starr
[originally posted on jforum.net by starr]
 
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
I assume you followed the steps above to make your SSO user an admin user?

If not... A quick search for where the "Registration disabled.." message might come from suggests that this might be due to the following options in the jforum-custom.conf file being wrong.

First, check:

registration.enabled=false

This setting will cause any call to create a new user to be disabled unless the current id is an admin or the config file contains this setting:

authentication.type=sso

Note this must be lower case and make sure there are no blanks, etc around it (might not matter... but...)


[originally posted on jforum.net by monroe]
 
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
Hi Monroe,

thank you for reply. I have solved the problem in the meantime.

I found the bug in my own authenticateUser method. It overwrote the group settings in the db table.

Regards,
starr
[originally posted on jforum.net by starr]
 
reply
    Bookmark Topic Watch Topic
  • New Topic