Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Free Torrent Source (http://www.bvlist.com/forumdisplay.php?f=25)
-   -   staff tools (http://www.bvlist.com/showthread.php?t=8296)

joyel 15th September 2012 02:43

staff tools
 
Hello,

I'm having some problems with staff tools. As of now only 'staff leader' can use those tools. Other staff usergroups such moderator, administrator, and sysop receive 'access denied' error while trying to use them. I checked the 'edit' page under staff panel and the permission setting looks alright.

How can I fix this? Any help would be greatly appreciated.

Cheers!

Bump: Can anyone shed some light on this?

Athlon 19th August 2013 17:20

Quote:

Originally Posted by joyel (Post 36515)
Hello,

I'm having some problems with staff tools. As of now only 'staff leader' can use those tools. Other staff usergroups such moderator, administrator, and sysop receive 'access denied' error while trying to use them. I checked the 'edit' page under staff panel and the permission setting looks alright.

How can I fix this? Any help would be greatly appreciated.

Cheers!

Bump: Can anyone shed some light on this?

Can enybody help? I got'a the same problem.

DND 19th August 2013 19:12

maybe you got some allowed id's that need to be inserted in some config file ?
don't have the source so i'm only guessing.

firefly007 19th August 2013 22:02

Quote:

Originally Posted by joyel (Post 36515)
Hello,

I'm having some problems with staff tools. As of now only 'staff leader' can use those tools. Other staff usergroups such moderator, administrator, and sysop receive 'access denied' error while trying to use them. I checked the 'edit' page under staff panel and the permission setting looks alright.

How can I fix this? Any help would be greatly appreciated.

Cheers!

Bump: Can anyone shed some light on this?

Cross check what class is able to view in the section.

eg.

PHP Code:

If ($CURUSER){
// is a member


or


PHP Code:

if ($CURUSER['class'] >= UC_OWNER) {
/* Script go's here and will only be viewed by the owner class*/


or

PHP Code:

if (get_user_class() < UC_OWNER) {
/* Script go's here and will only be viewed by the owner class*/


or

PHP Code:

if ($CURUSER['class'] >= UC_MODERATOR) {
/* Script go's here and will only be viewed by the mod class*/


or
PHP Code:

if (get_user_class() < UC_MODERATOR) {
/* Script go's here and will only be viewed by the owner class*/


Also check the operators

= Equal
+ Plus
- minus
* multiply
> Greater than
< Smaller then
/ Division
<> not equal
!= Not equal
>= Greater than or equal to
<= Smaller than or equal to
== Equal


All times are GMT +2. The time now is 17:16.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.