Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 5 1 2 3 4 5
#134311 05/13/2001 3:18 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
by a cast of votes, vote:

1. default sort by display name
2. default sort by login name (current)

Sponsored Links
#134312 05/13/2001 3:23 PM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
@ DPK
here i am again ...

1) delete the 2. ICO Gif
2) delete the $TBB in the top table at the SORT button in .pl

...... ad u like ..........



... to search by posts ...



- can i sort by public_names
- get "target" by Homepage and ICQ


www.chat-board.de

#134313 05/13/2001 3:37 PM
Joined: Jan 2000
Posts: 170
Member
Member
Offline
Joined: Jan 2000
Posts: 170
When i go to the cp and click on the memberlist settings, i get the following error: "You do not have permission to access this area." Maybe that's because i couldn't find the "$MainButtons = qq!" etc, etc line in ubb_lib?

#134314 05/13/2001 3:43 PM
Joined: Jan 2000
Posts: 170
Member
Member
Offline
Joined: Jan 2000
Posts: 170
The "$MainButtons = qq!" line doesn't exist in 6.04a.

#134315 05/13/2001 3:44 PM
Joined: Apr 2001
Posts: 26
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 26
I'd have to say that I'd prefer it do by displayed name, because thats the name everyone (regular members) know.


You also may want to set the text for the link ($MainButtons) as a wordlet, so those that capitalize it or have different languages can change it in the cp.

[ May 13, 2001 03:47 PM: Message edited by: XuDuX ]

Sponsored Links
#134316 05/13/2001 3:53 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
xudux: like i've said, i havent done wordlets for this yet.

slasher: make sure u have followed all directions.

#134317 05/13/2001 4:13 PM
Joined: Jul 2000
Posts: 53
Member
Member
Offline
Joined: Jul 2000
Posts: 53
yes works great. And the broken icq images are gone to. smile

#134318 05/14/2001 6:40 AM
Joined: Dec 2000
Posts: 19
Junior Member
Junior Member
Offline
Joined: Dec 2000
Posts: 19
the ubb_memberlist.cgi has a count-error

>> $ML_next = $ML_start+$ML_maxnumber+1

When you put +1 after this it counts 50+1 and this is wrong. Check this when you sort by usernumber. Every time you change a page (next 50) 1 member is missing. Delete the +1 ($ML_next = $ML_start+$ML_maxnumber) and it counts correct. ($ML_next = $ML_start+$ML_maxnumber+1 exist 2 times in this file)

[ May 14, 2001 06:43 AM: Message edited by: Sammie ]

#134319 05/14/2001 8:52 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
There is a bug, that occurs if there are less members than ML_sort_postnum:
Fix (works in my testboard):
Code
code:
Anticonscience, yes, it's not a brainer fix, but somebody has to do it wink

#134320 05/14/2001 11:14 AM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24

Sponsored Links
#134321 05/14/2001 11:35 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Dreamweaver, you didn't modify/upload your ultimatebb.cgi file correctly.
Check the "if ($ubb eq 'memberlist') {" part.

#134322 05/14/2001 12:05 PM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
This text copy from my ultimatebb.cgi

if ($ubb eq 'find_lost') {
require "$vars_config{CGIPath}/ubb_lib_misc.cgi";
&find_lost; exit;
} #end find_lost

if ($ubb eq 'memberlist') {
require "$vars_config{CGIPath}/ubb_memberlist.cgi";
&Memberlist_Parse; exit;
} #end memberlist


I cut and pasted from instruction file frown

#134323 05/14/2001 12:18 PM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
I've got ultimatebb.cgi hack as mentioned before , 2 file ubb_memberlist.cgi mode 755 , public_memberlist.pl mode 755

and a link like that in my board and i don't know why frown frown . I want the sort and multi page functions coz my board will full of member soon frown Please helpppppppp

[ May 14, 2001 12:29 PM: Message edited by: Dreamweaver ]

#134324 05/14/2001 12:45 PM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
PLZ - i like not only to show the "public names"

>>> i like to sort by public names



can u do it ...

www.chat-board.de

#134325 05/14/2001 1:49 PM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
Please help someone frown i also clear cache but can't help frown

#134326 05/14/2001 1:56 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
That only should happen if you didn't upload ultimatebb.cgi or ubb_memberlist.cgi.

BTW, I can't see "Powered by Infopop" anywhere...

#134327 05/14/2001 1:58 PM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Or change "if ($ubb eq 'get_memberlist') {"'s content to:

if ($ubb eq 'get_memberlist') {
require "$vars_config{CGIPath}/ubb_memberlist.cgi";
&Memberlist_Parse; exit;
} #end get_memberlist


and change all links to ultimatebb.cgi?ubb=memberlist to ultimatebb.cgi?ubb=get_memberlist

[ May 14, 2001 01:59 PM: Message edited by: LK ]

#134328 05/14/2001 2:12 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
dreamweaver:
please get the latest version, in the latest version, the ultimatebb.cgi if block should look like this (in v6.3.6):

if ($ubb eq 'memberlist') {
require "$vars_config{CGIPath}/ubb_memberlist.cgi";
&memberlist_parse; exit;
} #end memberlist

for some weird reason, maybe because i was tired, i changed the subroutine to lowercase.

if that doesnt work, take the hack out, make sure u download 6.3.6 from here , and install it. There is an auto installing shw file which should make ure life easier. If you are still having trouble, reply and I'll talk some more. You may also want to try LK's suggestions.


sammie:
* edit: n/m, i figured out what u meant * smile


lk:
your code and credit for it will be in the next release, thankyou. smile the more people contribute to this, the better it will be. smile


melder:
i'm not quite sure what you are asking? from my standpoint, i am recoding parsing so that it displays the display names only and not login names. partly for security and mostly because on the ubb you dont see a persons login name, you know them by their display name.

[ May 14, 2001 02:22 PM: Message edited by: DPK ]

#134329 05/14/2001 4:21 PM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
I change all to get_memberlist and it work wow laugh thank LK .

#134330 05/14/2001 11:13 PM
Joined: Apr 2001
Posts: 15
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 15
ok i just installed the newest release and i'm having some issues....

#1 when you first pull the memberlist it is not sorted correctly....half the "a,b,c etc." names end up on the second page after some of the "z's".

#2 this hack is showing the users registered names...not their display names.

I'm really mostly concerned about the first one..


http://www.anticonscience.net/cgi-bin/ultimatebb.cgi?ubb=memberlist

any suggestions? thanks.

[ May 14, 2001 11:15 PM: Message edited by: anticonscience ]

#134331 05/15/2001 1:21 AM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
melder:
i'm not quite sure what you are asking?

Quote
quote:

... understand now ?
...........................................

to show there displayed names (public names i say)

edit in pl. $user_profile[0] to $user_profile[15]


to sort edit .cgi to ???

...........................................
www.chat-board.de

#134332 05/15/2001 11:36 AM
Joined: Jan 2000
Posts: 313
Member
Member
Offline
Joined: Jan 2000
Posts: 313
Works pretty good. You definitely will want to consider breaking up the letter pages into multiple pages with "Next" and "Previous" at the top. Some of my letters have 60 or 70 names, too much to load one page.

Anyone else noticing that in the "Location" area, the background is the bg color and not the alt color if the person doesn't have anything in that field? Been trying if/else statements there, but have had no luck, so if anyone has the fix, post it.

[ May 15, 2001 01:04 PM: Message edited by: Slurpee ]

#134333 05/15/2001 1:55 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
anticonscience:
1. yes, bug fixed for next version.
2. i already stated that the next version will sort by display names, instead of registered users. it is a security risk not to do it otherwise. smile i agree.


melder:
yes, i understand now, this is fixed in the upcomming version.


slurpee:
lemme guess, ure seeing that on a netscape or older browser? the problem is that a browser like netscape will see that there is no content in that box of the table and and wont display the bg right. the simple solution is to just replace all the " "'s with "& nbsp ;"'s (ignore space between the & and n and the p and ; ). i'll fix it for next release.

also multi-page alphabet categories will be added to the next version.

[ May 15, 2001 05:03 PM: Message edited by: DPK ]

#134334 05/15/2001 1:56 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
expect a new version by either wednesday or thurday. i am busy with some school stuff at the moment. tipsy

#134335 05/15/2001 2:02 PM
Joined: Jan 2000
Posts: 313
Member
Member
Offline
Joined: Jan 2000
Posts: 313
DPK - Yep 'ole Netscape is the culprit. I tried using if/else statements and call a blank space instead of the $user_profile[6]. But alas no good. I'll look into your solution too. smile

#134336 05/15/2001 2:12 PM
Joined: Jan 2000
Posts: 313
Member
Member
Offline
Joined: Jan 2000
Posts: 313
DPK - found the problem. The reason you can't get the bg to print properly even with an if/else statement is that you need to to chomp the $user_profile[6] field in public_memberlist.pl. Once I did that, the bg did properly display after I used my if/else statement.

#134337 05/15/2001 7:19 PM
Joined: Apr 2001
Posts: 18
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 18
The template file has some html issues in it.

If I knew where they were I would be more descriptive but I don't.

I have my UBB enclosed in a table but the memberlist template seems to add an extra table tag and screws up the look of the page. :rolleyes:

My memberlist VS. what the style should look like My UBB

[ May 15, 2001 07:20 PM: Message edited by: PeterC ]


"Oil Beef Hooked"
-Drunk Irishman
#134338 05/16/2001 1:44 AM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
...

[ May 16, 2001 01:49 AM: Message edited by: melder ]

#134339 05/16/2001 1:46 AM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
... melder wink

ad - in the "sort option" to come back after sort by ...
###########################



###########################
edit, like in ubb topics, the next and prev to gif in .cgi
###########################




###
- and delete the "    " in .pl
##########################
and if u like:

- change the "#" to "@" or "special" 4 a better understanding ...

-
the AIM, PM, HP, ICQ, Search (if u insert)
-
4 the "posts"
-
4 "public wink -name, location and membernumber.
melder: www.chat-board.de

[ May 16, 2001 01:50 AM: Message edited by: melder ]
#134340 05/16/2001 1:47 AM
Joined: Feb 2001
Posts: 497
Enthusiast
Enthusiast
Offline
Joined: Feb 2001
Posts: 497
ups

#134341 05/16/2001 4:13 PM
Joined: Apr 2001
Posts: 14
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 14
Wow I have been looking for this hack for a while to replace my Coldfusion/SQL based email system with UBB's PM feature. Great work DPK! laugh

#134342 05/17/2001 4:19 PM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
Help , how do I get rid of "0000" before member number ?

Thanks

#134343 05/18/2001 6:26 AM
Joined: Apr 2001
Posts: 24
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 24
There's any update version allow sort members by join date ?

Thank you

#134344 05/18/2001 7:07 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
sorry for the delay, been busy with exams lately, expect another version soon.

#134345 05/18/2001 8:12 PM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
btw, if you want to test out my work as i move along and report bugs here, goto:

http://discussion.nfscheats.com/cgibin/ultimatebb.cgi?ubb=memberlist


so far:
  • multi-spanning categories have been done as requested
  • default sorting by public display name instead of login name
  • reported problem with the counter adding 1 to the 'start' fixed
  • public names are made lowercase, i just think it looks cleaner and it's how amy originally did it
  • it was suggested to sort by date joined, but i see no point really for that because if you sort by user number you will see the order that people joined and the date they joined sorted smile my 2 cents


[ May 18, 2001 08:33 PM: Message edited by: DPK ]

#134346 05/19/2001 7:36 AM
Joined: May 2001
Posts: 2
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 2
Quote
quote:
where i can find that's file ..i cant find it
(ubb_getmemberlist.cgi)


thanks

#134347 05/19/2001 8:40 AM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
[cold]: the code that you just quoted above is not something that will work to sort correctly by public name.

#134348 05/19/2001 8:43 AM
Joined: May 2001
Posts: 2
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 2
how to modify memberlist pages, so on the memberlist is public displayed name, not login name (i think its dangerous for users security) , please explain me how to do it..

see www.hmeitenas.org/forum

please explain how to modify me step by step..
thanks a lot smile

#134349 05/19/2001 8:55 AM
Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
DPK: I can't change back to Public Name, and I can't change back to show all letters/numbers (both of these "bugs" are also in older versions).

Also, I can't sort by something and show only 1 letter at the same time (also in the older ones); this feature would have been useful because I think Top 25 Posters of any letter is the best reason to use only one letter (so instead of 25 of all users, it shows only x's 25).

[ May 19, 2001 09:03 AM: Message edited by: LK ]

#134350 05/19/2001 9:13 AM
Joined: Nov 2000
Posts: 915
Developer
Developer
Offline
Joined: Nov 2000
Posts: 915
LK: i just added an option to the sort dropdown. i never really thought about doing what you mentioned for the top25. i guess i could implement something like that.


[edit: top25 thing done for each letter.]

[ May 19, 2001 10:26 AM: Message edited by: DPK ]

Page 4 of 5 1 2 3 4 5

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
Ruben Rocha
Ruben Rocha
Lutz,FL,USA
Posts: 254
Joined: January 2000
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)