Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 3 1 2 3





#133708 04/23/2001 11:01 AM
Joined: Jan 2001
Posts: 52
Member
Member
Offline
Joined: Jan 2001
Posts: 52
Well, I have been beginning a hack called the Authority List. Currently, it lists the Admins and Mods on your forum in a custom bar at the bottom of the forums. To view it go to www.shamangames.net/forums/ultimatebb.cgi and look down at the bottom. I am trying to translate it into active cgi.

Thanks to Spitz, some of it works. However, we can't get the Admin's to be shown, and it won't display all of the moderators. CGI experts, if you want, we need your help...

========================================
In public_forum_summary.pl Find:
========================================
sub PageBottom {
my $Bottom = qq~

========================================
BELOW that paste:
========================================

FACE="$vars_style{FontFace}">
Authority List

align="center">



Administrators: href="http://www.shamangames.net/forums/ultimatebb.cgi?ubb=get_profile&u=00000001">Axion Deedlit


Moderators: $Moderator


= = = = = = = = = =
Thats the code. If anyone can help, please do. Note, do not add this hack to your forums until its officially released please.

I would like to die like my grandfather; peacefully in his sleep, unlike the screaming passengers in the car he was driving.
Sponsored Links
#133709 04/23/2001 2:29 PM
Joined: Oct 2000
Posts: 807
Member
Member
Offline
Joined: Oct 2000
Posts: 807
i wanna help u on this like the names link able n stuff.......want help?

#133710 04/23/2001 2:54 PM
Joined: Sep 2000
Posts: 101
Member
Member
Offline
Joined: Sep 2000
Posts: 101
Axe, you aware that you have 2 who's online hacked, and they show different things?


kaak
[email protected]
icq# 4032410
#133711 04/23/2001 6:39 PM
Joined: Jan 2001
Posts: 52
Member
Member
Offline
Joined: Jan 2001
Posts: 52
Yea, sure Jigga, that would be great, and yes, Kaak, I understand this. LoL...


I would like to die like my grandfather; peacefully in his sleep, unlike the screaming passengers in the car he was driving.
#133712 04/24/2001 3:35 AM
Joined: Mar 2001
Posts: 149
Member
Member
Offline
Joined: Mar 2001
Posts: 149
hehe i've been killing myself trying to figure it out.. the furthest ive gotten to gettin the admin to work is linking it manually to the admin's profile laugh ... about the mods... im trying my best to figure it out!
Oh yea jigga.. do u have msn , icq, or aim? if u do please give me... axion if u have it also please give me laugh

[ April 24, 2001 03:43 AM: Message edited by: Spitz ]

Sponsored Links
#133713 04/24/2001 2:26 PM
Joined: Jan 2001
Posts: 52
Member
Member
Offline
Joined: Jan 2001
Posts: 52
I'de have to have your AIM before I can add you. ^_^


I would like to die like my grandfather; peacefully in his sleep, unlike the screaming passengers in the car he was driving.
#133714 04/24/2001 3:26 PM
Joined: Oct 2000
Posts: 807
Member
Member
Offline
Joined: Oct 2000
Posts: 807
aim: O411BlazeO
icq: 25500988

#133715 04/24/2001 9:04 PM
Joined: Mar 2001
Posts: 293
Member
Member
Offline
Joined: Mar 2001
Posts: 293
in ubb_lib.cgi there is sub GetModLine {
would you copy it change it some to get the admin info then where it has
$Moderator
$Moderator = &GetModLine("$x");
if ($Moderator eq '') { $Moderator = ' '; }
add
$Administrator
$Administrator = &GetAdminLine("$x");
if ($Administrator eq '') { $Administrator = ' '; }
where those are? just an idea i look at the code for 5 min(while i was at my uncle's) but you more than likely tried that already

#133716 04/25/2001 2:43 AM
Joined: Mar 2001
Posts: 149
Member
Member
Offline
Joined: Mar 2001
Posts: 149
Quote
quote:
fine.. my aim is IronFistKiller.. i know its bad

#133717 06/08/2001 1:38 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Did you get anywhere on this because it would be pretty sweet if it figured out all the admins and mods by it self ..

Sponsored Links
#133718 06/08/2001 2:29 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Done smile
Code
code:

Then put $Administrator instead of the administrators' long code.

[ June 08, 2001 02:31 PM: Message edited by: LK ]

#133719 06/08/2001 3:14 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Oh wait nevamind

[ June 08, 2001 03:19 PM: Message edited by: Tech-Ni-Kal ]

#133720 06/08/2001 3:24 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
nevermind wink

[ June 08, 2001 03:26 PM: Message edited by: LK ]

#133721 06/08/2001 3:46 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
ok two things..

one my ubb skipped member numba 00000002 so there isnt one and it doesnt work unless there is one how do I fix this also the moderator part doesnt work .. LK please add mod like the admin smile

#133722 06/08/2001 4:28 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
You're right smile
New code:
require "$vars_config{CGIPath}/ubb_registration.cgi";
my $last_number = &GetLastMemberNumber;
for ($start = &Do8Digit(1);$start le $last_number;$start = &Do8Digit($start + 1)) {
if (-e "$vars_config{MembersPath}/$start.cgi") {
@user_profile = &OpenProfile($start);
chomp($user_profile[8]);
if ($user_profile[8] eq "Administrator") {
chomp($user_profile[15]);
$Administrator .= qq~$user_profile[15], ~;
}
}
}
$Administrator =~ s/, $/ /;

#133723 06/08/2001 5:25 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
I added that little part and this is what I get

Content-type: text/html
Software error:
syntax error at /path/ubbcgi/ubb_forum_summary.cgi line 16, near "if" syntax error at /path/ubbcgi/ubb_forum_summary.cgi line 18, near ")) " syntax error at /path/ubbcgi/ubb_forum_summary.cgi line 20, near "if" syntax error at /path/ubbcgi/ubb_forum_summary.cgi line 193, near "}"

#133724 06/09/2001 1:08 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Weird, it works in my board...

Paste anything between line 10-25

#133725 06/09/2001 12:10 PM
Joined: Apr 2001
Posts: 254
Member
Member
Offline
Joined: Apr 2001
Posts: 254
is there a way to alter so that users can click the names and it opens up outlook.
mailto: thingie.

#133726 06/09/2001 12:20 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
chomp($user_profile[11]);
if ($user_profile[11] eq 'yes') {
chomp($user_profile[2]);
$Administrator .= qq~$user_profile[15], ~;
}

atleast that's the way it is in administrators.

#133727 06/09/2001 12:25 PM
Joined: Apr 2001
Posts: 254
Member
Member
Offline
Joined: Apr 2001
Posts: 254
ek this is all very confusing. can someone make it a zip or txt file?
thankyou in advance

#133728 06/10/2001 4:11 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
I think the moderators thing is because it only checks the last forum's moderator.

If you want to show all moderators that are NOT admins, do the following instead of my ubb_forum_summary.cgi code:
Code
code:

And in public_forum_summary.pl call $Moderators instead of $Moderator smile

Example in my testboard.


Cyberdude: http://members.nbci.com/lkubb/authority.txt

[ June 10, 2001 04:15 PM: Message edited by: LK ]

#133729 06/10/2001 4:19 PM
Joined: Apr 2001
Posts: 63
Member
Member
Offline
Joined: Apr 2001
Posts: 63
Great work LK! wink

[ June 10, 2001 04:23 PM: Message edited by: Yunkie34 ]

#133730 06/10/2001 5:51 PM
Joined: Apr 2001
Posts: 254
Member
Member
Offline
Joined: Apr 2001
Posts: 254
When I put it in it does this


Administrators: , , , ,
Moderators: ,


The hacks I got r
Whos online
Stats
flags
newsfader
last reply
avatars

Thanx in advance

#133731 06/10/2001 9:43 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Quote
quote:
what do you mean paste anything??

[ June 10, 2001 09:47 PM: Message edited by: Tech-Ni-Kal ]

#133732 06/11/2001 7:17 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Tech-Ni-Kal: copy and paste it to this thread.

Cyberdude: I can't find this hack in your board.

#133733 06/11/2001 9:09 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
I'd like to do two things with this hack, but I'm not sure if they'll work as I'm not a code genius:

1) Have it display like who's online (integrated style, not default top box) on the public topic pages at the top.

2) Have it display at the top or bottom of the main forum summary page, but for forums where Cat's have been ENABLED, not disabled like most.

Any suggestions? I know where the code would go, but I'm not sure if it'll work and am wary of trying. Primarily due to the differences in table formats.

#133734 06/11/2001 11:23 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Code
code:

#133735 06/11/2001 11:32 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Tech-Ni-Kal, you hacked it incorrectly.
Notice that "for ($start=&Do8Digit(00000001);", it's wrong.


Rehack this file.

#133736 06/12/2001 12:02 AM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Thanks works great now ..:)

#133737 06/13/2001 4:33 PM
Joined: Sep 2000
Posts: 57
Member
Member
Offline
Joined: Sep 2000
Posts: 57
Okay so the final code should be?? (and give me instructions on where to put it... Easy now wink ) Thanks EJ

#133738 06/13/2001 11:17 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
On the first page LK posted a link for someone .. just look down further

#133739 06/14/2001 12:18 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394

#133740 06/14/2001 5:25 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
Well I've installed it and it kind of works, but this is what you get:

http://www.ispreview.co.uk/cgi-bin/ubb2/ultimatebb.cgi?category=3

It's only showing three of the five Admins (we have no mods)? both d.bayliss and Rob.w are missing, interestingly both usernames with a '.' period in them? Possible problem here?

[ June 14, 2001 05:26 AM: Message edited by: mark99 ]

#133741 06/14/2001 5:36 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Note there are 2 spare commas, and even links (when you choose to view HTML source).

In my testboard I've tried with dots and it's fine:
"Administrators: LK, Mr.Test, Mr. Man" when Mr.Test = login + public name, Mr. Man = public name.

#133742 06/14/2001 6:30 AM
Joined: Mar 2001
Posts: 30
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 30
Slight problem!

I first had problems when I installed the hack I got the standard UBB message saying "we are not taking new registrations", my board is closed for those. However if I allow new registrations the hack works ok!

Any idea's

I'm using 6.4e

#133743 06/14/2001 7:53 AM
Joined: Jun 2001
Posts: 297
Member
Member
Offline
Joined: Jun 2001
Posts: 297
edit: nevermind, I got it to work by readding a line and deleting a space. great hack,but now my logo won't show up for some reason.

[ June 14, 2001 07:58 AM: Message edited by: Teleknesis ]

#133744 06/14/2001 7:57 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
What's lines 30-40 in ubb_forum_summary.cgi?

#133745 06/14/2001 9:52 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
Note there are 2 spare commas, and even links (when you choose to view HTML source).

LK,

Yeah I knew that already, but it still doesn't explain why their names don't show up, only the HTML links?

#133746 06/14/2001 10:04 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
I have no idea... As I said, here it works fine even with dots.

Try to play with the CP, like Rebuild Member Stat Files from the CP - Maintenance

#133747 06/15/2001 1:21 AM
Joined: Sep 2000
Posts: 57
Member
Member
Offline
Joined: Sep 2000
Posts: 57
I installed the mod and it works as advetised with 1 small exception when I first added it I did not have any mods or admins listed so it did not list any. I put my number in as a Mod on every forum just to check it out and it is not listing me even though I am the Mod on every forum..... Did i miss something? Mod is in there word for word...... Ideas Here is the test site : http://www.washingtonceasefire.net/cgi-bin/ubbcgi/ultimatebb.cgi Thanks El Jefe

#133748 06/18/2001 7:18 AM
Joined: Mar 2001
Posts: 30
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 30
Quote
quote:
Can anyone address this problem - I don't like leaving my board open for registartions.

#133749 06/18/2001 2:03 PM
Joined: Apr 2001
Posts: 36
Member
Member
Offline
Joined: Apr 2001
Posts: 36
i changed the code so after the administrators : you pout the name of admins. this works! (www.ffbeta.co.uk)

#133750 06/20/2001 5:55 PM
Joined: Jun 2001
Posts: 56
Member
Member
Offline
Joined: Jun 2001
Posts: 56
Has anyone had problems posting messages after the install??? I got error messages..So I had to uninstall it frown BTW, I have version 6.04e Am I doing something wrong??? Only two simple edits..It looked and almost worked perfect..

Aslo, can someone add the 'Authority List' title on the bar of the main forum page to the wordlets of the CP so I can center it on the bar?? Everything on the bars of my page are centered except this mod..

I really love this hack because you can get rid of the Mods list on the right so the rest of the main board has room..Thanks

#133751 06/20/2001 6:43 PM
Joined: Jan 2001
Posts: 75
Member
Member
Offline
Joined: Jan 2001
Posts: 75
Great Hack!, I love it!
I even got it working with MegaModerators 8)'

Now.... I wonder what it would take, to add the functionality to Who's Online (v3.9Qa), so that it displays the users, as active links to their profiles, just like it does in the Authority List!!!

That would be HOT!

Thanks for your work & help!

#133752 06/21/2001 12:24 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Done.

Code
code:
It works with List type, not Summary.

#133753 06/21/2001 2:25 AM
Joined: Mar 2001
Posts: 30
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 30
Quote
quote:
Sorry to address this again but I still don't have a solution.

Why is hack this causing a problem if my board is closed to Registration but ok if it is open?

Any help would be great.

#133754 06/21/2001 2:37 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
pole, I can't test it... maybe &OpenProfile has a problem with that.

#133755 06/21/2001 4:23 AM
Joined: Mar 2001
Posts: 30
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 30
Quote
quote:
Oh well, I have removed the code in ubb_forum_summary.cgi and just written in the admins and moderators as text.

Thanks anyway.

#133756 06/21/2001 4:50 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
^ Hehehe more efficient =)

#133757 06/21/2001 4:55 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
mark, about your problem, I think it's because you upgraded to V6.
Replace [15] with [0] so the new ubb_forum_summary.cgi code will be:
Code
code:

#133758 06/21/2001 10:01 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
Upgraded to V6? This is a Version 6 forum you know =).

Will give it a go, although I've actually noticed the loading time speed up dramatically since I removed the automated code and wrote it in manually. Put it back and the forum slowed again.

#133759 06/21/2001 11:14 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
That's weird, it is cached...


And I mean it's because V5 doesn't have [15] field, so maybe it wasn't automatically updated.

[ June 21, 2001 11:21 AM: Message edited by: LK ]

#133760 06/23/2001 1:51 AM
Joined: May 2001
Posts: 202
Member
Member
Offline
Joined: May 2001
Posts: 202
How would I go about adding the MegaModerators to this? I tried adding a couple times, but all it would end up showing is the member number...

#133761 06/23/2001 4:41 AM
Joined: Mar 2001
Posts: 326
Member
Member
Offline
Joined: Mar 2001
Posts: 326
Yes cache is on.

Hmm why do you keep going on about UBB5? This is a UBB6 hack and that's obvious.

#133762 06/23/2001 7:42 AM
Joined: Apr 2001
Posts: 27
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 27
LK,
Cyberdude posted about this on the first page of this topic. You said you didn't find the hack on his board. I take it he gave up and uninstalled it. Whatever the case, I am running into this same problem with the extra commas after the first admin, and am looking for a fix. Here is how it looks:

Authority List
Administrators: Admin1, , , Joe, Blow, Johnson

[ June 23, 2001 07:45 AM: Message edited by: PainLord ]

#133763 06/23/2001 9:30 AM
Joined: Apr 2001
Posts: 27
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 27
Never mind. I fixed my own problem. The 2 extra commas were there because I had 2 inactive admins. They haven't posted in in over a month but still had admin status. Why it left them two out but put the commas there I have no clue. I simply removed their admin status and it fixed the problem.

#133764 06/23/2001 9:12 PM
Joined: Jun 2001
Posts: 51
Member
Member
Offline
Joined: Jun 2001
Posts: 51
Ditto on Da Lunatic's comment. MegaModerators only show numbers :-(

#133765 06/23/2001 10:12 PM
Joined: May 2001
Posts: 202
Member
Member
Offline
Joined: May 2001
Posts: 202
Bah, damn MegaMods:p

#133766 06/26/2001 11:11 PM
Joined: Jan 2001
Posts: 75
Member
Member
Offline
Joined: Jan 2001
Posts: 75
I've fixed the MegaMod's display issue, but it's going to take me a day or two, to extract the info, and create a supplement doc... Cuz I did it by trial & error over a period of two days 8)... And it took a some extra coding on the MegaModerator hack...

In the mean time, look for the hack, that Add's MegaModerators standard title in UBB.. cuz you're going to need all your MegaMod's to have 'MegaModerator' as they're default user status for it to work... I know that off the top of my head 8)...

#133767 06/28/2001 12:30 AM
Joined: Mar 2001
Posts: 318
Member
Member
Offline
Joined: Mar 2001
Posts: 318
soo what coding do we use for this?

#133768 06/28/2001 11:52 AM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
I dont think he has released the coding for the MegaMod addon yet. wink

#133769 06/28/2001 4:24 PM
Joined: Mar 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 20
I think this is a cool hack but I seem to have hit a small problem. frown

When I try to use a new Template for the Registration Pages it makes the Forum Summary Page (Intro Page) go the same as the Registration Pages ?

I have tried all kinds of things to fix it with no luck confused

Anyone else had this problem or know a fix for it??

Wheelie™


Wheelieâ„¢
#133770 06/28/2001 4:34 PM
Joined: May 2001
Posts: 2,798
Member
Member
Offline
Joined: May 2001
Posts: 2,798
Make sure you didnt check both of them.

#133771 06/28/2001 5:29 PM
Joined: Mar 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 20
Sorry Tech

I f you are talking about my post check what??

all templeats are selected via dropdown boxes :rolleyes:


Wheelie™


Wheelieâ„¢
#133772 06/30/2001 4:03 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
is there a possibility to add other authority categorys then admins an mods....like special members....it could be cp.cgi controlled where you have a drop down menu where you can chose members that should appera in the authority list as special members or any other category...an you can make adding ategorys cp.cgi controlled

thx
nico-tin

#133773 06/30/2001 4:20 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Well... Anything is possible... But I can't see a reason why do you wanna do it. They don't have any special right like Moderators or Admins, so why are they so "special"?

#133774 06/30/2001 5:51 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
i cant explain it that well in english...

but is it possible?
could you do it for me....doesnt have to be cp controlled but would be nice...

nico-tin

#133775 06/30/2001 6:08 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
I know what you mean... You can hardcode it into the HTML now and refresh the cache. I can easily put it in the Wordletsâ„¢ so you can change it through the CP, but I find that useless...

Sorry

#133776 06/30/2001 7:00 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
if it is useless or not.....
could you do it for me?
plz

thx
nico-tin

#133777 06/30/2001 4:09 PM
Joined: Apr 2001
Posts: 240
Member
Member
Offline
Joined: Apr 2001
Posts: 240
Where it says "Authority List", how do I add an image as background behind that text, instead of solid colors. Like the gradient bar hack.

I want "grad.gif" as background behind the text that says "Authority list". 'Cos it looks a lil weird now, for it is :

http://gamingrealm.co.uk/cgi-bin/ultimatebb.cgi

It's visible by seein that I need a grad.gif bkgrnd behind that text.

#133778 06/30/2001 4:16 PM
Joined: May 2001
Posts: 202
Member
Member
Offline
Joined: May 2001
Posts: 202
Zone, open public_forum_summary.pl and search for "Authority List"

A couple lines above that it will have:



Replace that with:


#133779 07/01/2001 5:48 AM
Joined: Apr 2001
Posts: 240
Member
Member
Offline
Joined: Apr 2001
Posts: 240
Thanks Da Lunatic. Thanks a lot. smile

#133780 07/02/2001 7:36 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
is there someone who could help me doing this? plz?

thx
nico-tin

#133781 07/04/2001 8:15 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Nico-Tin:
http://members.nbci.com/lkubb/authority-nico.txt

Then you have to add some users in the CP - Misc Settings

There is no demo yet.

#133782 07/06/2001 9:41 AM
Joined: Jul 2001
Posts: 9
Junior Member
Junior Member
Offline
Joined: Jul 2001
Posts: 9
all i got to say is, it works great on my board

nice hack wink

#133783 07/06/2001 9:48 AM
Joined: Jul 2001
Posts: 9
Junior Member
Junior Member
Offline
Joined: Jul 2001
Posts: 9
Typo

Code
quote:</font><HR>
========================================
In public_forum_summary.pl Find:
========================================
sub PageBottom {
my $Bottom = qq~

========================================
BELOW that paste:
========================================
<tr bgcolor="$vars_style{CategoryStripColor}">
<td colspan="$ColSpan">
<FONT SIZE="$vars_style{TextSize}" COLOR="$vars_style{CategoryStripTextColor}"
FACE="$vars_style{FontFace}">
<b>Authority List</b></font>
</td>
</tr>
<tr>
<td bgcolor="$vars_style{AltColumnColor1}" valign="top"
align="center">
<IMG SRC="$vars_config{NonCGIURL}/world.gif" BORDER="0">
</td>
<td colspan="6" bgcolor="$vars_style{AltColumnColor2}">
<FONT size="$vars_style{TextSize}" face="$vars_style{FontFace}">
<b>Administrators:</b> $Administrator


<b>Moderators:</b> $Moderators
<b>Special Users:</b> $specialusers</font>
<HR></BLOCKQUOTE>

should be

<BLOCKQUOTE><font size="1" face="Verdana, Helvetica, Arial">code:

All you did was miss one small

#133784 07/07/2001 8:01 PM
Joined: May 2001
Posts: 25
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 25
Works for me, with one exception. When you have new registrations disabled, you cannot get access to the summary page. Instead it gives you the message "we are not excepting new registrations" as if you had clicked on the registration page. Weird. confused

#133785 07/23/2001 12:37 PM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
thx a lot LK

nico-tin

#133786 07/24/2001 8:15 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
hmmm strange....
the special member thing shows up in the cp.cgi and on the main page an everything but when i define someone as a special member he won't show up so the special member list is empty frown

plz help

thx
nico-tin

#133787 07/24/2001 8:30 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
You should enter the number (like 00000001), not name

#133788 07/24/2001 8:53 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
yes i did...but it doesnt show up.. confused

#133789 07/24/2001 9:00 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
That's weird...

Maybe replace if ($start == $line) { with if ($start eq $line) {

#133790 07/24/2001 9:18 AM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
hmmm still doesnt work

nico-tin

#133791 07/24/2001 9:24 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Hmm... did you clean your cache?

#133792 07/24/2001 5:29 PM
Joined: May 2001
Posts: 44
Member
Member
Offline
Joined: May 2001
Posts: 44
yes of course i did...

nico-tin

#133793 07/24/2001 5:47 PM
Joined: Jul 2001
Posts: 109
Member
Member
Offline
Joined: Jul 2001
Posts: 109
Hello, I would like to try this mod, but I am a bit frustrated.
Reading all the post I find one peace of code here and another there.

Is there a finished hackfile.txt somewhere?

I also plan to give each user ability to have his/hers own forum, and they will be moderator of that forum.
But they will not be considered as Admins or Moderators (Leaders) of the board.

Can I set Admins and Moderators from control panel, or will the mod list everyone that is a moderator, even the moderators of private forums?

#133794 07/24/2001 5:49 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
http://members.nbci.com/lkubb/authority.txt

It will include all of them, even of private forums.

#133795 07/24/2001 6:24 PM
Joined: Jul 2001
Posts: 109
Member
Member
Offline
Joined: Jul 2001
Posts: 109
That was bad, then I cant use it..damn laugh

But I'll just hardcode it in like a forum, no problem laugh

[ July 24, 2001 06:27 PM: Message edited by: kaukagaul ]

#133796 07/30/2001 3:06 PM
Joined: Jun 2001
Posts: 26
Junior Member
Junior Member
Offline
Joined: Jun 2001
Posts: 26
Are you going to release the Mega Mod edit anytime soon? I NEED it... laugh

#133797 07/30/2001 6:15 PM
Joined: May 2001
Posts: 10
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 10
Got the regular list installed and looks great.

One question to the CP function that you made for "nico-tin" When I try to do it that way I have a proiblem.

Code
code:

But in my Cp_lib I don't have that string... nor anything like "String" in the whole document.

#133798 08/11/2001 12:22 PM
Joined: Aug 2001
Posts: 43
Member
Member
Offline
Joined: Aug 2001
Posts: 43
It would be nice if it would work with the hypercells hack

#133799 08/27/2001 3:47 AM
Joined: Feb 2001
Posts: 73
Member
Member
Offline
Joined: Feb 2001
Posts: 73
any one going to release the mega mod code for this? PLEASE!

#133800 08/28/2001 12:21 AM
Joined: Feb 2001
Posts: 73
Member
Member
Offline
Joined: Feb 2001
Posts: 73
?

#133801 08/28/2001 12:32 AM
Joined: Feb 2001
Posts: 73
Member
Member
Offline
Joined: Feb 2001
Posts: 73
WOW! i figured it out myself! very easy! do this

open ubb_forum_summary.cgi

find

}
}
}
}
$Administrator =~ s/, $/ /;
$Moderators =~ s/, $/ /;

replace with

}
}
elsif ($user_profile[8] eq "MegaModerator") {
if ($user_profile[15]) {
$MegaModerator1 .= qq~$user_profile[15], ~;
} else {
$MegaModerator1 .= qq~$user_profile[0], ~;
}
}
}
}
$Administrator =~ s/, $/ /;
$Moderators =~ s/, $/ /;
$MegaModerator1 =~ s/, $/ /;

all done! then in public_forum_summary.pl just use $MegaModerator1 to call the mega mod names

#133802 09/15/2001 4:25 PM
Joined: Jun 2001
Posts: 26
Junior Member
Junior Member
Offline
Joined: Jun 2001
Posts: 26
Is anybody else having a problem installing this with the Who's Online 4.0 hack? I keep on getting a ubb_forum_summary error..

#133803 09/16/2001 6:06 AM
Joined: Jan 2001
Posts: 52
Member
Member
Offline
Joined: Jan 2001
Posts: 52
Wow.....been 5 months since I last posted this topic O_O.

Anyway....I go by the handle Axion now (not much changed, huh?).

I guess the only forums I post(ed) in recently were FFRepublic but the webmaster is a faggot and got banned here.

I'm glad to see progression with the hack idea I started smile although I don't use a UBB anymore.

If you like to see my new site...its @

http://ea.interactive-anime.com/designs

Wish you guys luck in expanding on the hack, making it better smile

[ 09-16-2001: Message edited by: Axeone ]


I would like to die like my grandfather; peacefully in his sleep, unlike the screaming passengers in the car he was driving.
#133804 09/16/2001 1:19 PM
Joined: Aug 2001
Posts: 43
Member
Member
Offline
Joined: Aug 2001
Posts: 43
lol, Axion? laugh
How did you get banned again?

#133805 09/16/2001 1:34 PM
Joined: Jul 2001
Posts: 122
Member
Member
Offline
Joined: Jul 2001
Posts: 122
said he spammed. tipsy

#133806 09/18/2001 10:26 AM
Joined: Apr 2001
Posts: 33
Member
Member
Offline
Joined: Apr 2001
Posts: 33
megamod hack never worked that well for me, i 12 mods per forum hack is great.. cool

#133807 09/21/2001 10:42 PM
Joined: Sep 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Sep 2001
Posts: 6
Can someone please either email the hack at putz@sports-gaming.com or post a url to a working link of the hack.txt

#133808 09/23/2001 1:33 PM
Joined: Aug 2001
Posts: 48
CNA Offline
Member
Member
Offline
Joined: Aug 2001
Posts: 48
um.........I love this hack, but as you can see, there is one problem for me, this is a picture of my test ubbs :

[Linked Image]

I need to change the colour of the Authority List to white so it matches my categories.

And another thing, how can I move it? I would like to move it from where it is to just above my first category header, is this possible? Any help would be very graciously accepted!!! laugh

CNA

#133809 09/29/2001 4:54 AM
Joined: Aug 2001
Posts: 48
CNA Offline
Member
Member
Offline
Joined: Aug 2001
Posts: 48
um........bump?

#133810 09/29/2001 9:25 AM
Joined: Jun 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Jun 2001
Posts: 6
the hack in a txt file???????

#133811 09/29/2001 9:30 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394

#133812 09/29/2001 11:34 AM
Joined: Aug 2001
Posts: 48
CNA Offline
Member
Member
Offline
Joined: Aug 2001
Posts: 48
um....I'm pretty sure I've seen this at the top of the forums, rather than the bottom, so can someone plz help me? Well, in all honesty, how do I move both this and the Chat "Category" below Who's online bar?

Any help would be very thankful smile

CNA

(My Site should be up soon smile YAY!)

';", put:
Code
code:

#133813 09/29/2001 12:00 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
After "$Top .= '
#133814 10/03/2001 1:34 AM
Joined: Sep 2000
Posts: 34
Member
Member
Offline
Joined: Sep 2000
Posts: 34
One thing I did notice though, if you use
, then Authority List will show up all crunched into the first column.

Instead of using
use and that will make it stretch across without looking funky. smile
#133815 10/11/2001 7:33 PM
Joined: Aug 2001
Posts: 3
Junior Member
Junior Member
Offline
Joined: Aug 2001
Posts: 3
What do I do then? The latest one or whatz?

#133816 10/11/2001 11:49 PM
Joined: Oct 2001
Posts: 2
RB3 Offline
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 2
ok i have tried this out, once i add the above code it somehow messes with my template settings.

changes color of table fields?

#133817 10/20/2001 11:01 PM
Joined: Oct 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 6
Do we have a finished version yet?

#133818 10/20/2001 11:20 PM
Joined: May 2001
Posts: 6,708
Member
Member
Offline
Joined: May 2001
Posts: 6,708
No, but this version works fine for me. I didn't spot one bug.

#133819 10/25/2001 8:14 PM
Joined: Sep 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Sep 2001
Posts: 6
*edit* found what I was looking for.

[ 10-25-2001: Message edited by: Putz ]

Page 1 of 3 1 2 3

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
Bill B
Bill B
Issaquah, WA
Posts: 87
Joined: December 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 20240430)