Previous Thread
Next Thread
Print Thread
Rate Thread
Page 7 of 7 1 2 3 4 5 6 7
Joined: Aug 2001
Posts: 107
Member
Member
Offline
Joined: Aug 2001
Posts: 107
after installing this i get a java error everytime i click one of the smillies when i reply to a topic


it says "error on page" at the lower bottom left of I.E browser.

Sponsored Links
Joined: May 2001
Posts: 684
Code Monkey
Code Monkey
Offline
Joined: May 2001
Posts: 684
Hi,

I have this problem:

I typed in Custom Ranks:

1|!!|Newbie
50|!!|Mitglied
100|!!|Senior-Mitglied
250|!!|Gold-Mitglied
500|!!|Premium-Mitglied

For members with 1-49 Postings it shows the correct rank "Newbie" but for members with 50 and more Postings it shows the rank"member" and not "Mitglied"!!!

What can I do??? confused


Webmaster of d-talk & Kabel-Forum.com

Index: Templates/public_edit_profile.pl
===================================================================
RCS file: /var/www/cvs/ubb/Templates/public_edit_profile.pl,v
retrieving revision 1.2
retrieving revision 1.9
diff -u -p -r1.2 -r1.9
--- Templates/public_edit_profile.pl 2001/08/15 06:18:02 1.2
+++ Templates/public_edit_profile.pl 2001/08/19 10:42:11 1.9
@@ -170,6 +170,47 @@ profile_guts2

# other registration fields follow:

+if (($vars_registration{custom1_field_use} ne 'DEL') && ($vars_registration{customfield1} ne '')) {
+
+if ($vars_registration{custom1_field_use} eq 'REQ') {
+$B1 = ''; $B2 = '';
+} else {
+$B1 = ''; $B2 = '';
+}
+
+print <+
+

+
+
+
+
+THISFIELD
+
+} # end field
+
+
+
require "$vars_config{CGIPath}/avatar_list.pl";
&AvatarGutsProfile;

@@ -280,33 +321,6 @@ $B1$vars_wordlets{interests_field}$B2:
THISFIELD

} # end field
-
-
-if (($vars_registration{custom1_field_use} ne 'DEL') && ($vars_registration{customfield1} ne '')) {
-
-if ($vars_registration{custom1_field_use} eq 'REQ') {
-$B1 = ''; $B2 = '';
-} else {
-$B1 = ''; $B2 = '';
-}
-
-print <-
-

-
-
-
-
-THISFIELD
-
-} # end field
-


if (($vars_registration{custom2_field_use} ne 'DEL') && ($vars_registration{customfield2} ne '')) {
Index: Templates/public_register_page.pl
===================================================================
RCS file: /var/www/cvs/ubb/Templates/public_register_page.pl,v
retrieving revision 1.2
retrieving revision 1.8
diff -u -p -r1.2 -r1.8
--- Templates/public_register_page.pl 2001/08/15 06:18:02 1.2
+++ Templates/public_register_page.pl 2001/08/19 10:42:11 1.8
@@ -129,6 +129,43 @@ RegisterGuts2

# other registration fields follow:

+if (($vars_registration{custom1_field_use} ne 'DEL') && ($vars_registration{customfield1} ne '')) {
+
+if ($vars_registration{custom1_field_use} eq 'REQ') {
+$B1 = ''; $B2 = '';
+} else {
+$B1 = ''; $B2 = '';
+}
+
+print <+
+

+
+
+
+
+THISFIELD
+
+} # end field
+
+
+
require "$vars_config{CGIPath}/avatar_list.pl";
&AvatarGutsProfile;

@@ -239,33 +276,6 @@ $B1$vars_wordlets{interests_field}$B2:
THISFIELD

} # end field
-
-
-if (($vars_registration{custom1_field_use} ne 'DEL') && ($vars_registration{customfield1} ne '')) {
-
-if ($vars_registration{custom1_field_use} eq 'REQ') {
-$B1 = ''; $B2 = '';
-} else {
-$B1 = ''; $B2 = '';
-}
-
-print <-
-

-
-
-
-
-THISFIELD
-
-} # end field
-


if (($vars_registration{custom2_field_use} ne 'DEL') && ($vars_registration{customfield2} ne '')) {
Joined: Aug 2001
Posts: 4
Junior Member
Junior Member
Offline
Joined: Aug 2001
Posts: 4
This is a great hack Jimbo, but appears to be lacking one feature that I found that I wanted enough to where I hacked it in myself.

Basically what I wanted was for users to be able to pick one of two or more different categories at registration times and get a different set of ranks depending on which category they pick. I did some tweaking here and there and came up with the following hack which needs to be applied on top of Jimbo's custom status hack. Note that because I manage UBB in CVS I've found it very easy to give a unified diff file rather than the usual set of instructions for the hack. Apoligies in advance if this is unsuitable, but this is also the way I choose to submit my hacks. I recommend that you apply this hack manually rather than using the patch program, but if you choose to do the latter you will probably have to supply the location of many of the files it modifies as well as fixing a number of rejects.

Note that this hack does use the first custom profile field. You can change that to any of the other three fields in the usual manner. Before applying this hack I recommend turning custom ranks off, then fix the ranks according to the instructions in Custom status management before turning custom ranks back on again. You'll have to set the first custom field in registration settings to Category and enable it also:

Index: cp_custom_status.cgi
===================================================================
RCS file: /var/www/cvs/ubb-cgi/cp_custom_status.cgi,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- cp_custom_status.cgi 2001/08/17 04:04:56 1.1
+++ cp_custom_status.cgi 2001/08/19 09:56:30 1.2
@@ -180,11 +180,12 @@ sub SetCustomStatusSettings {
unless ($check =~ m/|!!|/) {
&StandardHTML("ERROR (line $count): Custom Rank: $check does not have |!!| present OR a blank line exists where there shouldn't be one. If you've received this error previously and the data has been inputted correctly, you'll need to disable the Data Verification Check in Custom/Status Rank Variable Settings.");
}
- ($num, $rank) = split(/|!!|/ , $check);
- unless ($num > $last) {
- &StandardHTML("ERROR (around line $count): Custom ranks not in lowest to highest order. $num in $check is less than or equal to the one above it. It should be higher!");
- }
- $last = $num;
+# Disable this check -- PJ - 08/19/2001
+# ($num, $rank) = split(/|!!|/ , $check);
+# unless ($num > $last) {
+# &StandardHTML("ERROR (around line $count): Custom ranks not in lowest to highest order. $num in $check is less than or equal to the one above it. It should be higher!");
+# }
+# $last = $num;
}
@check = (split/n/, $in{custom_override_guts});
for $check (@check) {
Index: ubb_custom_status.cgi
===================================================================
RCS file: /var/www/cvs/ubb-cgi/ubb_custom_status.cgi,v
retrieving revision 1.1
retrieving revision 1.5
diff -u -p -r1.1 -r1.5
--- ubb_custom_status.cgi 2001/08/17 04:04:56 1.1
+++ ubb_custom_status.cgi 2001/08/19 10:21:11 1.5
@@ -9,7 +9,9 @@ require "$vars_config{VariablesPath}/var

sub GetStandardRank {
#$_[0] : numberofposts
- local($value, $num, $rank);
+ #$_[1] : category
+ chomp $_[1];
+ local($value, $num, $rank, $category);
if (($vars_custom_status{status} eq "off") || ($vars_custom_status{status} eq "titles")) {
return &CustomTitle($user_profile[8]);
}
@@ -17,16 +19,18 @@ sub GetStandardRank {
$value = "";
foreach my $line(@OpenFile)
{
- ($num, $rank) = split(/|!!|/, $line);
- $value = $rank if ($_[0] >= $num );
+ ($category, $num, $rank) = split(/|!!|/, $line);
+ chomp $category;
+ $value = $rank if ($_[0] >= $num && ($category eq '' || $category eq $_[1]));
}
return $value;
} #end sub GetStandardRank

sub GetCustomRank {
#$_[0] : numberofposts
+ #$_[1] : category
local($value);
- $value = &GetStandardRank($_[0]);
+ $value = &GetStandardRank($_[0], $_[1]);
if (($vars_custom_status{status} eq "off") || ($vars_custom_status{status} eq "titles")) {
return $value;
}
Index: ubb_lib_posting.cgi
===================================================================
RCS file: /var/www/cvs/ubb-cgi/ubb_lib_posting.cgi,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- ubb_lib_posting.cgi 2001/08/17 04:04:56 1.4
+++ ubb_lib_posting.cgi 2001/08/19 09:26:18 1.5
@@ -673,7 +673,7 @@ $show_public_name = $user_profile[15];

# get custom title
require "$vars_config{CGIPath}/ubb_custom_status.cgi";
-$user_status = &GetCustomRank($user_profile[7]);
+$user_status = &GetCustomRank($user_profile[7], $user_profile[16]);
$custom_status = &GetCustomTitle($this_user_number);

$u = $this_user_number + 0; # rid extra zeros from member no.
Index: ubb_profile.cgi
===================================================================
RCS file: /var/www/cvs/ubb-cgi/ubb_profile.cgi,v
retrieving revision 1.2
retrieving revision 1.4
diff -u -p -r1.2 -r1.4
--- ubb_profile.cgi 2001/08/15 06:18:36 1.2
+++ ubb_profile.cgi 2001/08/19 09:50:25 1.4
@@ -308,6 +308,7 @@ sub edit_my_profile {
local(@user_profile, $logged_in_status, $days, %select_list, $chompee, $mm_yes, $mm_no, $ev_yes, $ev_no, $count, $email_verify_requirement, $Signature, $user_public_name, $update_wording, $update_name, $update_un, $user_status, $update_date, $pm_yes, $pm_no, $pm_notify_yes, $pm_notify_no);


+require "$vars_config{CGIPath}/ubb_custom_status.cgi";
require "$vars_config{CGIPath}/ubb_lib_posting.cgi";
# lib required for reverse_ubb_code

@@ -330,7 +331,7 @@ if ($user_profile[24] eq 'yes') {
}

# custom status
-$user_status = &CustomTitle($user_profile[8]);
+$user_status = &GetCustomRank($user_profile[7], $user_profile[16]);

# request for user's own profile
$in{u} = $user_number;
Index: vars_wordlets_mods.cgi
===================================================================
RCS file: /var/www/cvs/ubb-cgi/vars_wordlets_mods.cgi,v
retrieving revision 1.4
retrieving revision 1.6
diff -u -p -r1.4 -r1.6
--- vars_wordlets_mods.cgi 2001/08/16 06:17:55 1.4
+++ vars_wordlets_mods.cgi 2001/08/19 09:46:44 1.6
@@ -1,4 +1,6 @@
%vars_wordlets_mods = (
+custom_status_categories => q~Category1
+Category2~,
whos_online_Guest => q~Guest~,
whos_online_column_where => q~Where~,
whos_online_seconds => q~seconds.~,
Index: Templates/cp_manage_custom_status.pl
===================================================================
RCS file: /var/www/cvs/ubb/Templates/cp_manage_custom_status.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- Templates/cp_manage_custom_status.pl 2001/08/17 04:04:40 1.1
+++ Templates/cp_manage_custom_status.pl 2001/08/19 09:26:45 1.2
@@ -54,7 +54,7 @@ print<




Specify Custom Ranks using the following guidelines:
-
  • min_number_of_posts|!!|rank

  • +
    • category|!!|min_number_of_posts|!!|rank

    • one per line
    • HTML is permitted in each rank

    • ranks must be in ascending order (like in example)

    @@ -64,11 +64,12 @@ print<
    Example:


    -1|!!|Newbie

    -50|!!|Commander

    -100|!!|Special Teams Warrior

    -200|!!|Pretender

    -300|!!|Special Teams Commander
    +Category1|!!|0|!!|Newbie

    +Category1|!!|25|!!|Commander

    +Catetory1|!!|50|!!|Special Teams Warrior

    +Category2|!!|0|!!|Newbie2

    +Category2|!!|25|!!|Commander2

    +Category2|!!|50|!!|Special Teams Warrior2



+
+$B1$vars_registration{customfield1}$B2:
+

+

+
+

-
-$B1$vars_registration{customfield1}$B2:
-

-

-
-

+
+$B1$vars_registration{customfield1}$B2:
+

+

+
+

-
-$B1$vars_registration{customfield1}$B2:
-

-

-
-
Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
Drake Code hacking error. Re-hack from known backups.

d-talk Have you double checked your code hacking?

P Ajamian Please see your PM.

qasic

Joined: Aug 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Aug 2001
Posts: 8
Quote
quote:
I "had" the same problemme, your problemme is it is showing the UBB's default ranks not your custom ranks, so all I did to get it working (after 30 minutes of riping my hair out) is I just went into Miscellaneous Settings, and where it says

"Use Alternate User Titles?
There are four status options for users: administrators, moderators, members, and junior members. You can have these four user classes appear as alternate titles, if you like. For instance, if you have a Star Trek site, you may want your administrators to be called Star Fleet Captain, your moderators to be called First Mate, your Members to be called Lieutenant and your Junior Members to be called Ensign."

All I did was go to the Junior member field and type in anything you like (I typed Pawn as in the chess piece) then click update Miscellaneous Settings, and you custom ranks should work now smile

I guess by updating the Miscellaneous Settings, when it processed it realised you have custom ranks and not the default ones, I dunno, but thats all I did and it works now laugh

Also, like quasic said ages ago (page 1 or 2), in the Custom Ranks fields where you put in your |!!| bizzo, press and make sure you backspace any leftover spaces tipsy


Aussie
Sponsored Links
Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
The latter problem regarding was fixed in the version for UBB 6.1 smile

Joined: Aug 2001
Posts: 48
CNA Offline
Member
Member
Offline
Joined: Aug 2001
Posts: 48
I apoogize if this has already been answered but me and my mate have both got 6.05's respectively but we both can't seem to get this to work. When we select Custom Title/Rank Settings in CP we're guided to a blank page with your credits/info on the bottom example:

[Linked Image]
The URL is : http://cna2002.topcities.com/damn.jpg

(However that is from a 6.04f testboard.)

So I haven't been able to get it to work on a 6.04f and 6.05, but I've installed it to work on a 6.03 in the past.

Please help Qasic, thanks mate smile

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

Joined: Aug 2001
Posts: 48
CNA Offline
Member
Member
Offline
Joined: Aug 2001
Posts: 48
Sorry about that, just re-read the files, its for 6.0.0 to 6.04b. Does this mean there ISN'T a custom status/rank hack for the 6.04f and 6.05?

Joined: Oct 2001
Posts: 29
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 29
UPgrade to 6.1.0.2 and install the hack.

Working great for me on 2 boards right now.

Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
CNA, this hacks works on any UBB 6.0X version, the faster one only works on UBB 6.1X.

qasic

Sponsored Links
Joined: Nov 2001
Posts: 5
Junior Member
Junior Member
Offline
Joined: Nov 2001
Posts: 5
Neat little hack, qasic. What are the downsides to it, if there are any?

Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
Sorry for my bad English...
Hack work greatly, but I can't see custom status in profile. I tried to replace $user_status with $custom_status in public_edit_profile.pl & public_display_profile.pl, but take no result.
What I should make to do that.

2 P Ajamian
Your upgrade is cooool, but I'm not professional in hacking. Can You explain, what exactly I need to do?

Sanx!
Greetings from Russia!


Come get some!
Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
No answers... frown
Maybe I'm too lamer to make this upgrade? confused

I need help.


Pomogite, kto znaet!


Come get some!
Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
Another one bug.

I'm specified Custom Titles, but shown only Custom Ranks! What I need to do?


Come get some!
Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
Yo!

Quote
quote:
The English got in your way. ADD BELOW is _different_ than REPLACE. You were suppose to add $custom_status BELOW $user_status not replace it.

qasic

Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
O! I see! Ok...
I'll try to do that tomorrow.

Be connected! smile I have maaaaaaany questions! smile Nice to talk with you. smile


Come get some!
Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
HI!

I may sound like a complete idiot (but I'll take my chances here). This is a very popular hack and it has the features I'm looking for in my board but I seem to have an installation problem. I (think) I configured the hack properly but when I try to execute it I get the infamous 'syntax error page' suggesting that it is trying to call the vars_custom_status.cgi which never generated. In fact, none of the files that were supposed to generate did. frown

If anyone could kindly point our my errors and help me that would be cool.

THANKS!
PrimeTime confused

Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
Need halp again!

Moderators always shown as "moderator" in all forums! frown


Come get some!
Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
HI!

I fixed the problem (which was my bad to begin with) so everything is operational. Awesome hack btw!

Paranoix: I don't know in detail of what you did but this is what I did. I set my 'custom ranks' (the ranks according to the amount of posts) for regular members and guests, 'custom rank' for Mods and Admins and 'custom rank override' for the members I wanted to have a distinct title. All of them were set to "0" posts so they are automatically set to that rank specified. Ex for custom override (notice the alone "0"):

members numbers here|!!|0|!!|your title here ----> 00000015|!!|0|!!|Captain

I hope this helps.

PrimeTime

Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
2PrimeTime
I did that too, It's work. Thanks.
By the way, Do you have moderators in other forums shown as "moderators" or like other members?
I have as "Moderators" and I dont know what I need to do. confused


Come get some!
Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
Quote
quote:
HI PARANOIX!

My Moderators have been renamed actually and they show up in all of the forums regardless whether they are moderating those forums or not. I did change it so that they show up as regular members in the beginning, but I decided that they should have their own rank so I used 'custom override'. This is more labor intensive but I like its flexibility.

Hmm...I'm not exactly clear to what you want to achieve. Is it that your Moderators show up as the name "Moderators" in every forum?...Or that you only want your Moderators to show up on the forums they moderate?

I think your best bet would be to speak to Qasic or Jimbo, but I'll help you if I can. laugh

THANKS!
PrimeTime

Joined: Oct 2001
Posts: 8
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 8
Yeep. I want my Moderators to show up on the forums they moderate!


Come get some!
Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
HI PARANOIX!

UBB's default has that option...Although I rather do it manually by going into the files rather than CP. Try this...Erase all settings from your ranking hack and only set the custom rank for moderators and see what happens. I think there is a way but because that means you would have to edit the hack codes I suggest you speak to Qasic or Jimbo...I'm sure they will help you as they did with many others.

THANKS
PrimeTime

Joined: Oct 2001
Posts: 60
Spotlight Winner
Spotlight Winner
Offline
Joined: Oct 2001
Posts: 60
.... nevermind I was blind....

[ 11-14-2001: Message edited by: Asmo ]

Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
Paranoix,

Read the FAQ in the ReadMe file - it tells you how.

qasic

Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
HI PARANOIX!:

I think this is what Qasic was suggesting (in ubb_lib_posting.cgi):

$user_status = &FixMod; <----- This is for showing 'Moderator' in only forums the member is moderating.

#$user_status = &FixMod; <----- This is for showing 'Moderator' in all forums regardless if the are moderating it or not.

Correct me if I'm wrong...And great hack BTW. Keep up the good work.

THANKS,
PrimeTime

Joined: Nov 2001
Posts: 16
Junior Member
Junior Member
Offline
Joined: Nov 2001
Posts: 16
hi...
i just insatalled that hack but everytime i go to the control panel to set it up i get this messge:
Access Denied. No permission to write inside /home/*****/public_html/cgi-bin/cgi. Read FAQ for more information.

i tried moving the files to a folder that i chmod 777 and still the same message...

i solved this problem by chmod cgi-bin folder as 777 and the files created correctly but when i tried to set the ranks i got this message:
Access Denied. No permission to write inside /home/*****/ranks. Read FAQ for more information.

Joined: Nov 2001
Posts: 16
Junior Member
Junior Member
Offline
Joined: Nov 2001
Posts: 16
i'm still waiting...

Joined: Nov 2001
Posts: 1,080
Member
Member
Offline
Joined: Nov 2001
Posts: 1,080
HI CATAROMA!:

Err...Did you go into the Primary Settings or Maintenance to set your ranks first? You may have attempted to do this already but you need to configure the settings in the Primary Settings before you can go into the Maintenance to set your members' ranks. Just wondering. laugh

THANKS!:
PrimeTime

Joined: Nov 2001
Posts: 16
Junior Member
Junior Member
Offline
Joined: Nov 2001
Posts: 16
thanx i solved the problem...i was linking to the file wrongle...there was no public_html

thanx

Joined: Aug 2001
Posts: 3
Junior Member
Junior Member
Offline
Joined: Aug 2001
Posts: 3
I tryed it out and it works perfect thanks for the great hack qasic.

[ 11-25-2001 12:48 AM: Message edited by: BBallmster ]

Joined: Oct 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 6
Whats wrong here?

Undefined subroutine &main::CustomStatusConfig called at C:InetpubwwwrootForumPhantcgi-bincp.cgi line 750

Joined: Jan 2001
Posts: 1,940
Developer
Developer
Offline
Joined: Jan 2001
Posts: 1,940
Either 1) you did not upload cp_custom_status.cgi or 2) cp.cgi was hacked incorrecly.

qasic

Joined: Oct 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 6
Well I have Who's Online and Avatar hacks on and I used the install cgi script.

Joined: Oct 2001
Posts: 6
Junior Member
Junior Member
Offline
Joined: Oct 2001
Posts: 6
Oh and also I am having some problems with the UBB adding links. As seen on this page http://forums.phantomrpg.com/cgi-bin/ultimatebb.cgi?ubb=get_topic&f=11&t=000007

You can see it leaves a gap in the URL somewhere. Do you know whats causeing this? And how do I fix it?

Joined: Jan 2002
Posts: 1
Junior Member
Junior Member
Offline
Joined: Jan 2002
Posts: 1
Can I make it so that I get an auto-avatar when the ranks change (Like a rank insignia)?

Page 7 of 7 1 2 3 4 5 6 7

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
JAISP
JAISP
PA
Posts: 449
Joined: February 2008
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)