Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Memberlist Details »»
Memberlist
Version: 1.0.1, by TheAdminMarket TheAdminMarket is offline
Developer Last Online: Jul 2017 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 4.2.2 Rating:
Released: 07-02-2015 Last Update: 07-04-2015 Installs: 32
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

Since 2006 I was serving community members with my Free Mods
But as this site will starts operating by the company,
I'm no willing to support them

** File Removed **


Memberlist

A Better Memberlist for your Forum


Quote:
I'm offering my hard work for free, without even a single copyright line in footer, expecting that some of you will appreciate the time that I spent for coding it and they will donate something.
Demo: http://www.teriakis.com/vb423/memberlist.php

1.- What's this?

Memberlist is a vBulletin 4x AddOns which replaces the standard Memberlist with a new one, more beatiful and with many more features.

2.- Features
  • You can set which Usergroups to show in Memberlist
  • Homepage with 3 sections where you can promote some Members of your site (eg The Support Team, The Site's Founder etc). You can assign userid(s) per section and also give a custom title for it.
  • Adds a new Menu in Usercp in Networking section where the user can set their ids in some popular social networks like:
    • Facebook
    • Twitter
    • Google Plus
    • Linkedin
  • In Frontend each Member Profile shows:
    • Avatar
    • Username
    • Online/Offline status
    • Usertitle
    • Location
    • Age
    • vB build-in messenger links: Icq, Aim, Msn, Skype, Yahoo
    • Social Links: Facebook, Twitter, Google+, Linkedin
    • Homepage link
    • Button-Link to add that member in your buddy list
  • Powerful Search by:
    • Username starting Letter
    • Partial Username
    • Usergroup
    • Location
    • Age range
    • Join in last xx days
    • Posts more than xx
    • All 10 messenger and social options
  • Other Information in Sidebar:
    • Ajax Tab for Member Statistics with 3 tabs:
      • Online Now
      • Just Join Us
      • Usergroups with totals
    • Ajax Tab for Top Posters with 3 tabs:
      • Top Posters this Week
      • Top Posters this Month
      • Top Posters this Year

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
4 благодарности(ей) от:
akz645, Crazihorse2, eTiKeT?, RSprinkel

Comments
  #22  
Old 07-08-2015, 02:06 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lapiervb View Post
Your demo still does not work.
http://www.teriakis.com/vb423/memberlist.php
Reply With Quote
  #23  
Old 07-11-2015, 03:18 PM
sparky17 sparky17 is offline
 
Join Date: Apr 2014
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Everything else works but the avatars on the memberlist do not work. It fetches a URL: http://www.coldplaying.com/forum//fo...ar29957_74.gif

instead of the correct one:

http://www.coldplaying.com/forum/cus...ar29957_74.gif

What should I change so the avatar on the memberlist points to the correct path instead of adding the 'forum/' before the path?
Reply With Quote
  #24  
Old 07-11-2015, 05:07 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sparky17 View Post
Everything else works but the avatars on the memberlist do not work. It fetches a URL: http://www.coldplaying.com/forum//fo...ar29957_74.gif

instead of the correct one:

http://www.coldplaying.com/forum/cus...ar29957_74.gif

What should I change so the avatar on the memberlist points to the correct path instead of adding the 'forum/' before the path?
As i can see the avatar link is wrong as it has twice /...forum//forum/....
In my code there is no hand coded link. It takes the link by the native vB function:
PHP Code:
// Avatar
$member_avatarurl fetch_avatar_url($member['userid']);
if (!
$member_avatarurl)
{
    
$member_useravatar 'memberindex/images/noavatar.png';
} else {
    
$member_useravatar $vbulletin->options['bburl'] . '/' $member_avatarurl[0];

At least tell me in which block or page the avatar does not appears.
Reply With Quote
  #25  
Old 07-11-2015, 05:51 PM
Stratis's Avatar
Stratis Stratis is offline
 
Join Date: Jan 2010
Posts: 738
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am trying to use it in vb4.2.0
I have an issue. HTTP 500 error (memberlist.php?do=searchresults)
I see graphics but where ever I press I get HTTP 500 error.

Any clue? or it is for vb4.2.2+ Thanks any way.
Reply With Quote
  #26  
Old 07-11-2015, 06:07 PM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stratis View Post
I am trying to use it in vb4.2.0
I have an issue. HTTP 500 error (memberlist.php?do=searchresults)
I see graphics but where ever I press I get HTTP 500 error.


Any clue? or it is for vb4.2.2+ Thanks any way.
I've coded in 4.2.2 but I don't remember to have something special to cause errors. Is this only on search results page?
What PHP version are you using?
Reply With Quote
  #27  
Old 07-11-2015, 07:15 PM
sparky17 sparky17 is offline
 
Join Date: Apr 2014
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by NickTheGreek View Post
At least tell me in which block or page the avatar does not appears.
http://www.coldplaying.com/forum/memberlist.php Via this page
Reply With Quote
  #28  
Old 07-12-2015, 03:27 AM
TheAdminMarket's Avatar
TheAdminMarket TheAdminMarket is offline
 
Join Date: Jun 2013
Location: Thessaloniki, Greece
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sparky17 View Post
Seems that something is wrong in your settings for site URL. Maybe avatars work in other places but this is because they don't use full url but relevant url.

Do a test. Open file memberlist.php and change line 110:
From:
Code:
$member_useravatar = $vbulletin->options['bburl'] . '/' . $member_avatarurl[0];
To:
Code:
$member_useravatar = $member_avatarurl[0];
Then save and uploade the file and check the block "Our Administrators" in homepage. It's also a good idea to clear your browser's cache before.
Reply With Quote
  #29  
Old 07-12-2015, 03:34 AM
bosanci28's Avatar
bosanci28 bosanci28 is offline
 
Join Date: Feb 2008
Location: USA - West Coast
Posts: 271
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello Chris,

This is off topic, can you tell me when and if you going to release that "Media Gallery" mod? I could not contact you at your forum,and sent a pm here , but no reply back from you.
Thanks.
Reply With Quote
  #30  
Old 07-12-2015, 03:42 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sparky17 View Post
You could remove the Extra Tabs plugin you have that is not needed for 4.2.2 and disable all plugins apart from this one to see if that is a problem might help to see if there is a plugin causing a problem also check if all plugins are up to date
Reply With Quote
  #31  
Old 07-12-2015, 05:04 AM
Stratis's Avatar
Stratis Stratis is offline
 
Join Date: Jan 2010
Posts: 738
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by NickTheGreek View Post
I've coded in 4.2.2 but I don't remember to have something special to cause errors. Is this only on search results page?
What PHP version are you using?
Basic I see only:
Meet Our Members... bla bla actually how many members in every usergroup
When I press to every link that shows gives an error 500
memberlist.php?do=browse&groupid=5
memberlist.php?do=browse&groupid=6
memberlist.php?do=browse&groupid=2

All errors in every usergroup, my php is 5.2.17
When I revert to mine memberlist.php, all is fine as it was.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:19 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04868 seconds
  • Memory Usage 2,328KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (1)bbcode_php
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (4)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete