[ABD] Super Moderators

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment! No new topics are allowed in this forum.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: MOD Development Forum rules

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

L-o-T wrote: I don't know where to change a members user status from a member to Super Mod

Go to the ACP and down to the bottom of the page to 'user admin' and click 'permissions'
from there type in the users name and there should be a drop-down box on the displayed page where you can select 'user, admin or super-mod'

you can also use 'users list' if you have that installed, and click permissions on the desired user :)

Anyone help me with my problem? ^^
i'm sure i have added all the updated code, but to no avail :(
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

can anyone help??
i'd really like to have this fully working :oops:
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

bumpness :wink:
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
jchipper
Registered User
Posts: 503
Joined: Wed Jun 11, 2003 7:06 am
Location: California
Contact:

Post by jchipper »

I get this error when I click on the link to super mods ACP

and it's trying to access this page http://www.youthforgod.net/forum/super_mod/index.php

Template->make_filename(): Error - file does not exist

I checked and yes that file is there

and also I don't see where to manage it in the ACP.
~ The Bible is the Chart and Compass that guides us through this life to the eternal port of heaven.~
Website - http://www.youthforgod.net
Message Board - http://www.youthforgod.net/forum/index.php
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

cherokee red wrote: *edit* i just tried reseting and admin to a user and then setting their user status to super but it didn't work. any ideas??


Which version of this mod do you have installed? There were three parts to it when I installed it, the main mod, the mod that fixes the problem with reseting the user status in that ACP, and the part that added the color for the super mods. It sounds like you're missing the second part.

In version 2.1.0 of the mod it's in a separate file named gatekeep2.txt
## Mod Title: Administration Panel for Super Moderators MOD
## Mod Version: 1.1.1

It modifies admin/admin_ug_auth.php
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

jchipper wrote: I get this error when I click on the link to super mods ACP

and it's trying to access this page http://www.youthforgod.net/forum/super_mod/index.php

Template->make_filename(): Error - file does not exist

I checked and yes that file is there

and also I don't see where to manage it in the ACP.


Sounds more like the template file is missing? The original mod (not the version I'm using) has lots of template files in a less_admin subdirectory of the style you're using. Make sure you have those installed.
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

tbartold wrote:
cherokee red wrote:*edit* i just tried reseting and admin to a user and then setting their user status to super but it didn't work. any ideas??


Which version of this mod do you have installed? There were three parts to it when I installed it, the main mod, the mod that fixes the problem with reseting the user status in that ACP, and the part that added the color for the super mods. It sounds like you're missing the second part.

In version 2.1.0 of the mod it's in a separate file named gatekeep2.txt
## Mod Title: Administration Panel for Super Moderators MOD
## Mod Version: 1.1.1

It modifies admin/admin_ug_auth.php

i did all 3. i'll check again to see if i missed any thing.
post back in a bit :)

*edit* i have the latest that's on the front page :)
Last edited by stickerboy on Fri Jun 11, 2004 3:00 pm, edited 1 time in total.
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

sorry for the double. i got a wierd error message about smpt and a failed connection.
thought it hadn't gone through, but obviously it did

ok i can't sem to find this bit -

Code: Select all

# 
#-----[ FIND ]------------------------------------------- 
#

// 
// Update user level to mod for appropriate users 
// 
$sql = "SELECT u.user_id 
         FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . USERS_TABLE . " u  
         WHERE ug.group_id = aa.group_id 
            AND u.user_id = ug.user_id 
            AND u.user_level NOT IN (" . MOD . ", " . ADMIN . ") 
         GROUP BY u.user_id 
         HAVING SUM(aa.auth_mod) > 0"; 

# 
#-----[ REPLACE WITH ]------------------------------------------- 
#

// 
// Update user level to mod for appropriate users 
// 
$sql = "SELECT u.user_id 
         FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . USERS_TABLE . " u  
         WHERE ug.group_id = aa.group_id 
            AND u.user_id = ug.user_id 
            AND u.user_level NOT IN (" . MOD . ", " . ADMIN . ", ". LESS_ADMIN .") 
         GROUP BY u.user_id 
         HAVING SUM(aa.auth_mod) > 0";

# 
#-----[ SAVE/CLOSE FILE ]------------------------------------------ 
# 
# EoM 
and i'm gettin a parse on 635. i did a bit of poking around to see if i could fix, alas no.

here's my file if anoyne want to take a look
http://www.mrikasu.com/cherokeered/docs ... g_auth.txt
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

cherokee red wrote: here's my file if anoyne want to take a look
http://www.mrikasu.com/cherokeered/docs ... g_auth.txt


Yours looks a lot different thatn mine, that maybe it got out of sequence on the changes? If you want to try and sort out all the differences, at least mine appears to be working ok : admin_ug_auth.php
jchipper
Registered User
Posts: 503
Joined: Wed Jun 11, 2003 7:06 am
Location: California
Contact:

Post by jchipper »

tbartold wrote:
jchipper wrote:I get this error when I click on the link to super mods ACP

and it's trying to access this page http://www.youthforgod.net/forum/super_mod/index.php

Template->make_filename(): Error - file does not exist

I checked and yes that file is there

and also I don't see where to manage it in the ACP.


Sounds more like the template file is missing? The original mod (not the version I'm using) has lots of template files in a less_admin subdirectory of the style you're using. Make sure you have those installed.


Thanks! it works!! btw which one are you using?
~ The Bible is the Chart and Compass that guides us through this life to the eternal port of heaven.~
Website - http://www.youthforgod.net
Message Board - http://www.youthforgod.net/forum/index.php
jchipper
Registered User
Posts: 503
Joined: Wed Jun 11, 2003 7:06 am
Location: California
Contact:

Post by jchipper »

How do I edit what a Super moderator can do and how do I make someone a Super moderator?
~ The Bible is the Chart and Compass that guides us through this life to the eternal port of heaven.~
Website - http://www.youthforgod.net
Message Board - http://www.youthforgod.net/forum/index.php
User avatar
MHobbit
Former Team Member
Posts: 4761
Joined: Thu Mar 18, 2004 5:32 pm
Location: There and Back Again

Post by MHobbit »

If you read this thread at all, or searched, you would know that going into phpMyAdmin, and changing the user's level to 3 would designate them Super Moderator. :wink:

I imagine a way to edit what they can do can be accomplished by editing the code, and/or adding some template files in /phpBBroot/super_mod/templates...
Former phpBB MOD Team member
No private support is offered.
"There’s too many things to get done, and I’m running out of days..."
jchipper
Registered User
Posts: 503
Joined: Wed Jun 11, 2003 7:06 am
Location: California
Contact:

Post by jchipper »

ok thanks just did not want to read through 30+ pages.
~ The Bible is the Chart and Compass that guides us through this life to the eternal port of heaven.~
Website - http://www.youthforgod.net
Message Board - http://www.youthforgod.net/forum/index.php
User avatar
stickerboy
Former Team Member
Posts: 7349
Joined: Mon Mar 29, 2004 2:27 pm
Location: Scotland
Name: Kenny Cameron
Contact:

Post by stickerboy »

tbartold wrote:
cherokee red wrote: here's my file if anoyne want to take a look
http://www.mrikasu.com/cherokeered/docs ... g_auth.txt


Yours looks a lot different thatn mine, that maybe it got out of sequence on the changes? If you want to try and sort out all the differences, at least mine appears to be working ok : admin_ug_auth.php

if you've got the time to, that'd be great.
cheers :)
I'm a web-designing code-decrypting tech-support musician
|| Twitter || Flickr || phpBB Snippets ||
Formerly known as cherokee red
User avatar
conehead
Registered User
Posts: 67
Joined: Wed Jun 16, 2004 10:40 pm

Post by conehead »

i received this erro when i went on my acp and my super cp.

Code: Select all

Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/conehead/public_html/forum/language/lang_english/lang_admin.php on line 669

Warning: Cannot modify header information - headers already sent by (output started at /home/conehead/public_html/forum/language/lang_english/lang_admin.php:669) in /home/conehead/public_html/forum/admin/index.php on line 582

Warning: Cannot modify header information - headers already sent by (output started at /home/conehead/public_html/forum/language/lang_english/lang_admin.php:669) in /home/conehead/public_html/forum/admin/index.php on line 583
thanx, i really can't do anything without being able to get into these cp's.

NOTE: my phpbb version is 2.0.6
Locked

Return to “[2.0.x] MODs in Development”