Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
#142974 02/02/2002 6:26 AM
Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Description: Adds a bar on your main page which lists all the mods and Admins on your forum. It also adds a new page that lists them too as well as where the Mods Moderate.

Hack By: Lord Dexter

Original Author: LK/Axeone

Requirements: UBB™ 6.2.0 Or Higher & Mod Wordlets.

Demo: Click here

Download: Here

Changes In 2.2.0:
Ported To 6.2
Added where Mods moderate. (What forums, kinda like the team hack version)
New Template File
WOL Tracking.

Changes In 2.2.1 (Current Version)
Mega Mod Addon Instructions
Bugfixes.

Planned For 2.2.2
Auth List Via SSI
Possible CP Controlling

Enjoy the hack, report bugs, code errors etc. etc.

Sponsored Links
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Even though you say 'Original authors: Axeone, LK', thanks for crediting me in the page. (?ubb=authority_list) :rolleyes:

I don't require being credited just if I originally made it, but if you're crediting yourself, you can also credit the original authors.

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Sorry, I credited you on the page too. smile

Joined: Oct 2001
Posts: 572
Member
Member
Offline
Joined: Oct 2001
Posts: 572
I will be doing the ssi for 2.2.1 so stay tuned guys. I hope to get the ssi done on sunday.(cst)

Joined: Jun 2001
Posts: 572
Member
Member
Offline
Joined: Jun 2001
Posts: 572
Works great! Good job.

~Jon

Sponsored Links
Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Great! No bugs found yet. smile

Joined: Dec 2000
Posts: 52
Member
Member
Offline
Joined: Dec 2000
Posts: 52
Why does my name appear twice lol in the admin field
http://gamenexus2k.com/cgi-bin1/ultimatebb.cgi

Joined: Jun 2001
Posts: 572
Member
Member
Offline
Joined: Jun 2001
Posts: 572
quote:
Originally posted by Phase Strike:
Why does my name appear twice lol in the admin field
http://gamenexus2k.com/cgi-bin1/ultimatebb.cgi

That didn't happen to me, but when I hacked it the Authority List made two people who weren't mod's mod's....O_o

~Jon

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
quote:
Originally posted by Phase Strike:
Why does my name appear twice lol in the admin field
http://gamenexus2k.com/cgi-bin1/ultimatebb.cgi

Cannot Find server..

Joined: Jan 2002
Posts: 34
Junior Member
Junior Member
Offline
Joined: Jan 2002
Posts: 34
Good hack, working great. No problems yet found on 6.20

Sponsored Links
Joined: Oct 2001
Posts: 32
Content King
Content King
Offline
Joined: Oct 2001
Posts: 32
does this only work for 6.2 beta release 1.2 or does it work for regualr 6.2 too ?

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Yep it works on All 6.2.0 versions. Has been tested on 6.2.1 too.

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Still has that color bug from Axeone's versions wink

Find:
-----

face="$vars_style{FontFace}">

Replace with:
-------------

face="$vars_style{FontFace}">

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Thanks LK. Updated to 2.2.1 with Mega Mod Instructions and Bugfixes. The Mega Mod instructions are not tested and I did it pretty quick so there might be mistakes in there. Please report them.

Joined: Sep 2001
Posts: 170
Member
Member
Offline
Joined: Sep 2001
Posts: 170
============
In ubb_lib.cgi Find:
============

$MainButtons = qq!
$MyProfileLink $ifmyreg $RegisterLink $ifregsearch $SearchLink $ifsearchrest $vars_wordlets{faq_link} | $vars_wordlets_mods{ML_memberlist_link} | $vars_wordlets{forum_home_link}

==============================
Add Right After (On same line)
==============================

| $vars_wordlets_mods{auth_list}

========================================

In 6.2.x this has been replaced with:

sub MainButtonOptions {
my($this_forum, @items);
if (exists $in{'f'}) {
$this_forum = ";search_forum=$in{f}";
} else {
$this_forum = "";
}

# Okay, everyone whining about the main button options being
# hard to add to can now cut it out. :-D

if ($vars_registration{DisplayRegistration} ne 'NO') {
# My Profile
push(@items, qq($vars_wordlets{profile_link}));

if($vars_registration{SuspendRegister} ne "true") {
# Register
push(@items, qq($vars_wordlets{register_link}));
} # end if
} # end if

if ($vars_search{AllowSearch} ne 'FALSE') {
# Search
push(@items, qq($vars_wordlets{search_link}));
}

# FAQ
push(@items, qq($vars_wordlets{faq_link}));
# Forum Home
push(@items, qq($vars_wordlets{forum_home_link}));

return join(" | ", @items)
} # end MainButtonOptions

So this step should be:

============
In ubb_lib.cgi Find:
============

# Forum Home
push(@items, qq($vars_wordlets{forum_home_link}));

==============================
Add Right After
==============================

#Authority list
push(@items, qq($vars_wordlets_mods{auth_list}));

========================================
In ubb_forum_summary.cgi Find:
========================================
Code
[/code]Should be: 

[code]

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
BTW, for the CP integration, you can use 'Mod CP Addon' hack laugh

Joined: Sep 2001
Posts: 170
Member
Member
Offline
Joined: Sep 2001
Posts: 170
Just installed this and I am getting the following when I try to go my UBB. I can't get to the forum summary page at all:

FYI
We are not accepting new registrations at this time.

» Please use your browser's back button to return.

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
And who said it's this hack's fault?! Make sure everything is fine at CP - Registration Settings

Joined: Sep 2001
Posts: 170
Member
Member
Offline
Joined: Sep 2001
Posts: 170
It was working fine before I installed this hack, and its fine now that I removed it.

FYI - I have registration turned off, We do not allow registrations on our site, we add people based on if they meet our requirements for roleplaying. They have to submit an application first.

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Oh, I didn't see you said 'forum summary'. It's something from the 6.0 series, when I didn't know Perl almost at all wink

Instead of:
Code
[/code]Use[code]
(in both ubb_forum_summary.cgi and ubb_auth_list.cgi)

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Thanks again LK, I totally forgot the 6.0 code had that problem with it. I thought it worked perfectly since I didn't see any complaints. ZIP updated with that code. Make sure you upgrade if you using 2.2.0. These are essential bugfixes. laugh

Edit-Thanks to MrStormyNights too, ZIP updated again. Hmm I though I had updated that code. Anyway...
Also, it won't work with 6.2.0 Beta's anymore besides for 6.2.1 Beta 1.0

Joined: Jun 2001
Posts: 572
Member
Member
Offline
Joined: Jun 2001
Posts: 572
What would I do to only add the new page, and not the thing at the bottom of the forum home?

~Jon

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Remove the code added in public_forum_summary.pl and ubb_forum_summary.cgi and just leave the link at the top of forum home.

Joined: Oct 2001
Posts: 572
Member
Member
Offline
Joined: Oct 2001
Posts: 572
LD you keeping ecf on the newest version???

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Eep, Nope. I'll upgrade it soon for you. wink

Joined: Mar 2002
Posts: 5
Junior Member
Junior Member
Offline
Joined: Mar 2002
Posts: 5
Does anyone have a working link to this because www.extremechatforums.com has be down for some time thanks.

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
I'm sorry about that. I'll try get it up on a different server. The link will work again soon. Sorry for the Inconvienience.

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
Can we change the style of the page? (?ubb=authority)

edit: I know also see an error tipsy . On the mainpage under [Authority List] mods won't show up.

It says: Administrators: Lauren
Moderators: [nothing], and yes I know sure that there's somebody mod. tipsy

On ?ubb=authority the mods do show up!

Anothere problem:
I installed now also the megamod addon and I get the same problem, but the megamods doesn't show up in ?ubb=authoiry neither frown

url= http://gknet.twistedanime.net/cgi-bin/ubb/ultimatebb.cgi

I hope somebody can help me! Thanks in advance

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Thats a weird prob. I can't spot a mistake in the code. Are you sure you have all the code required in ubb_forum_summary.cgi?

EDIT-Looking at the forum, Sortalic (the mod) status is Junior Member, not Moderator. In ubb=authority the mods do show up, but no Super Mods. Do you have Mega Mod installed?

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
Yes I have, I thought Laurem (me tipsy ) was the admin, sortalic the MegaModerator (sub-admin) and voldemort (a moderator. But I could make a mistake here. I'll check everything twice now wink

edit: the world is full of unespected things tipsy . The moderators now work, but the megamod still won't work. I'll rehacking it soon smile

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
It could be my MegaMod addon. I rushed it and it was un-tested. But re-install the MegaMod for me, just to make sure. Thanks.

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
I allready planed to do that smile . I'm now starting with it wink . Or else I try the megamod addon for authority list wich comes with the megamod zip file. (if it makes any difference tipsy )

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Don't use the one in the MegaMod Zip. It's for the old version.

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
I rehacked only the *.cgi files and now I get:

Code
[/code]Line 675 of ubb_forum_summary.cgi = (the last line)
[code]

Joined: Apr 2001
Posts: 214
Member
Member
Offline
Joined: Apr 2001
Posts: 214
I find it most of the time when i get that error is to delete the blank line below the line:

# $Id: ubb_forum_summary.cgi,v 1.3 2002/01/31 23:34:47 cvscapps Exp $

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
ok, i'll try. thank you

euhm...i'm affraid there isn't any space after it tipsy

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
Do you edit ubb_forum_summary.cgi in the MegaMod hack? or did you re-hack the Auth List?

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
No (you don't edit ubb_forum_summary.cgi)
No (I didn't rehack the authority-list hack, why should I? That hack works great smile )

Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
I'm glad it does. It's just that MegaMod addon that worries me.
I'm going to finalise the CP addon with LK's hack and maybe SSI and then we can finalise this hack. laugh

Joined: Jan 2002
Posts: 116
Member
Member
Offline
Joined: Jan 2002
Posts: 116
OK, good luck wink

Page 1 of 2 1 2

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Nettomo
Nettomo
Germany, Bremen
Posts: 417
Joined: November 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)