flyalaska Posted February 14, 2010 Report Share Posted February 14, 2010 I have created a group called Moderator. I have set the settings but users in that group are unable to access the admin panel. Here is how I have it set up. You see anything that I am missing. I don't want this group to have full admin. Quote Link to comment Share on other sites More sharing options...
TennShadow Posted February 14, 2010 Report Share Posted February 14, 2010 Looks right to me. Someone else was having a problem getting to the admin panel some time ago. I'm not sure if it is the same problem your having or not. Worth a try though. http://forum.phpvms.net/index.php?topic=2093.0 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted February 14, 2010 Author Report Share Posted February 14, 2010 Looks right to me. Someone else was having a problem getting to the admin panel some time ago. I'm not sure if it is the same problem your having or not. Worth a try though. http://forum.phpvms.net/index.php?topic=2093.0 No! that's not my problem. I have tested the admin on test user and I am able to get the admin link. I can't get the link when I use the Moderator group that I have made. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted February 14, 2010 Administrators Report Share Posted February 14, 2010 The link might only show up for the full admin, but can they still get to it by going to /admin? Quote Link to comment Share on other sites More sharing options...
TennShadow Posted February 14, 2010 Report Share Posted February 14, 2010 The link might only show up for the full admin, but can they still get to it by going to /admin? The link might only show up for the full admin, but can they still get to it by going to /admin? The way I have mine coded in the PHP is if they are in the ACCESS_ADMIN group they see the link. Look at your nav file and see what groups sees the link. If it is FULL_ADMIN change it to ACCESS_ADMIN. Quote Link to comment Share on other sites More sharing options...
flyalaska Posted February 15, 2010 Author Report Share Posted February 15, 2010 I have it like this <?php if(Auth::UserInGroup('Administrators')) { ?> When I change it to ACCESS_ADMIN I loose the Admin Link. Quote Link to comment Share on other sites More sharing options...
TennShadow Posted February 15, 2010 Report Share Posted February 15, 2010 I use the below and it works for full admins and ACCESS_ADMIN. <?php if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted February 15, 2010 Administrators Report Share Posted February 15, 2010 Yeah, shadow7 is correct, that template hasn't been updated Quote Link to comment Share on other sites More sharing options...
flyalaska Posted February 15, 2010 Author Report Share Posted February 15, 2010 Thanks that worked! Quote Link to comment Share on other sites More sharing options...
hoktay-istanbul Posted May 23, 2010 Report Share Posted May 23, 2010 I doing a group only edit schedules. But he can change it every thing. I just want to only change schedules.Not the other setting. How can I do. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted May 23, 2010 Administrators Report Share Posted May 23, 2010 I doing a group only edit schedules. But he can change it every thing. I just want to only change schedules.Not the other setting. How can I do. Set EDIT_SCHEDULES and ACCESS_ADMIN Quote Link to comment Share on other sites More sharing options...
hoktay-istanbul Posted May 24, 2010 Report Share Posted May 24, 2010 Yes. I did. But he is change every thing. And how to add link in the menu(php code) Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted November 17, 2010 Report Share Posted November 17, 2010 Boy am I glad I found this thread. I was having issues getting groups to work with admin access. I quickly learned that my link on core_nav was wrong. Thanks for the share guys. The fix worked a treat. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.