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

Reply
 
Thread Tools
"MemberIndex": New Memberlist, Top Posters, Featured Members, Member Rating etc Details »»
"MemberIndex": New Memberlist, Top Posters, Featured Members, Member Rating etc
Version: 1.4.0, by vbFreelancers vbFreelancers is offline
Developer Last Online: May 2008 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.7.0 Beta 4 Rating:
Released: 01-27-2008 Last Update: 02-01-2008 Installs: 80
DB Changes Uses Plugins Template Edits
Additional Files Translations  
No support by the author.

Removed by the Author
due to luck of free time to support it.
------------------------------------------------------------


Member Index
A Member list replacement
by vbFrerlancers


- New in version 1.4.0 Final (Released Feb 1st, 2008)
  1. Fixed the bug with usergroup permissions
  2. You can setup different usergroup in Admin Block
  3. Added a 2nd similar to Admin's Block, for general use (can be turn off)
  4. Code optimization to avoid run queries, if a feature is OFF.
- How to upgrade from version 1.1.0
  1. Uninstall your current installation
  2. Follow the steps below for a new installation


- New in version 1.3.0 (Released Feb 1st, 2008)
  1. Featured Members
  2. Improved Profile View
  3. Full Image View popup (javascript)
  4. Usergroup Permissions
  5. More Options
- How to upgrade from version 1.1.0
  1. Uninstall your current installation
  2. Follow the steps below for a new installation
- Working on 1.4.0 for.....
  1. Featured Members Block in Main Page
  2. Checking all permissions for bugs


- New in version 1.2.0 (Released Jan 30th, 2008)
  1. Member Rating
  2. Top Members
  3. Improved Interface
- How to upgrade from version 1.1.0
  1. Upload memberindex.php to your vB directory
  2. Uninstall your current installation
  3. Import product-memberindex.xml
- Working on 1.3.0 for.....
  1. Featured Members
  2. Profile view improvement


- New in version 1.1.0 (Released Jan 29th, 2008)
  1. Advanced Search
  2. Improved Main Page
- How to upgrade from version 1.0.0
  1. Upload memberindex.php to your vB directory
  2. Re-import (check overwrite) product-memberindex.xml
- Working on 1.2.0 for.....
  1. Profile view improvement
  2. Profile Rating !!
I developed this mini-mod having in mind to deliver a better interface, more info and more configurable Memberlist replacement. Of course you can use it as standalone, or change the link to your navbar to redirect to my page.



1.- What I've in mind to improve next days
  • To change the info given in blocks for most active with number of posts and other statistics
  • To change the profile in listing by adding more info (eg biography etc). All of them can be turn On/Off by admin. Also to place in profile a popup with related options (eg Email, PM, Add to Buddy etc).
  • To add Advanced search, but much more powerfull than vB's. This is the reason that I left empty the left side bar.
  • To add in profiles other useful information pulling them from popular mods (eg vbCredits).
2.- Installation


Installation is pretty easy:
  1. Upload all files and directories including at "vbulletin" directory to the directory where vBulletin is installed.
  2. Check at your AdminCP->vBulletin Options->Plugin/Hook System that Plugin system is enabled.
  3. From your AdminCP->Plugin System->Manage Products choose Add/Import Product and import the product: product_memberindex.xml
  4. Set the various options at: Member Index Options. If you can't see the menu on the left, press F5. Don't forget to choose which usergroups to show.
  5. If you want to replace your current member list, you must edit the navbar template to point to memberindex.php instead of memberlist.php Otherwise you can add a seperate menu.
3.- For your info

This is not a Lite version, as I'm not planing to release a Commercial one. But you can find in our site, a Brand Free version for $15, a very fair amount as I believe. I don't like donations, so this is a great way if you want to support my work and to get something back in exchange.

That's all. Hope to enjoy it

Marina

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 02-08-2008, 10:50 PM
djlotus djlotus is offline
 
Join Date: Oct 2005
Posts: 92
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I noticed a small typo tonight. While viewing the "registered members" index page, I noticed that the "skype on" image wasn't showing. I found the problem and have a simple fix. Below is a screen shot of the problem.

https://vborg.vbsupport.ru/attachmen...1&d=1202517784
member_index_misspell.jpg

And here is a screen shot of the problem fixed.


https://vborg.vbsupport.ru/attachmen...1&d=1202518069
member_index_fixed.jpg

To fix this problem open the "memberindex_userbit" template and find

Code:
<if condition="$userinfo[skype]<>''">
                  <a href="#" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">
                  <img border="0" src="memberindex/images/skype_on.gif" width="18" height="18" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_skype_to_x]</phrase>"></a></td>              
                <else />
                  <img border="0" src="memberindex/images/shype_off.gif" width="18" height="18"></td>              
                </if>
replace with

Code:
<if condition="$userinfo[skype]<>''">
                  <a href="#" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">
                  <img border="0" src="memberindex/images/skype_on.gif" width="18" height="18" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_skype_to_x]</phrase>"></a></td>              
                <else />
                  <img border="0" src="memberindex/images/skype_off.gif" width="18" height="18"></td>              
                </if>
Reply With Quote
  #93  
Old 02-09-2008, 02:29 AM
poprulz poprulz is offline
 
Join Date: Oct 2005
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*installed*

Works fine, but there is no rate option in the member search result page. Please do add rate member feature in search result pages like feature member button.

The memberindex page takes some time to load and the system load goes high when the page is accessed, I've got around 23,000 members and ~400,000 posts. Is there anyway the result is cached and maybe updated once in an hr using cron rather than pull the data each time the page is requested.
Reply With Quote
  #94  
Old 02-10-2008, 09:14 AM
hubix hubix is offline
 
Join Date: Nov 2005
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It would be fine, if extra profilefields are searchable.
Reply With Quote
  #95  
Old 02-12-2008, 07:40 PM
haytham's Avatar
haytham haytham is offline
 
Join Date: Jan 2003
Location: USA-Egypt-UAE
Posts: 510
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed on 3.6.8 English and an Arabic forum. Thank you. This kind of helps me to choose best members and moderators for each month.
Reply With Quote
  #96  
Old 02-12-2008, 08:01 PM
Sofia Sofia is offline
 
Join Date: Oct 2006
Location: France
Posts: 725
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Permission "can_use" is missing in the XML code. Any idea ?
Reply With Quote
  #97  
Old 02-13-2008, 07:26 AM
rolandogomez's Avatar
rolandogomez rolandogomez is offline
 
Join Date: Jan 2006
Location: San Antonio
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Now if we can just add, under the user's name in the results, "Member's Albums" with a link to their albums like in this hack for post pit, https://vborg.vbsupport.ru/showthread.php?t=168428
Any help is appreciated for us non-programmer types...Thanks, rg.
Reply With Quote
  #98  
Old 02-13-2008, 07:06 PM
haytham's Avatar
haytham haytham is offline
 
Join Date: Jan 2003
Location: USA-Egypt-UAE
Posts: 510
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by seangworld View Post
hey! cannot rate the members now! (so therefore top members column is empty)

Ok I did the rating option but from where can I rate a member? Nothing is showing now in top members. Any help appreciated.
Reply With Quote
  #99  
Old 02-15-2008, 07:35 PM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed this in 3.7 Beta5 and have the following problems:
- top posters last week/last month: posters with just 0 or 1 post are listed, instead of top posters
- Top posters overall: random members seem to be displayed.
- Top members: there does not seem to be a rating function, so there are no top rated members.
- How do you set featured members?
- Member list: rows are not aligned, as height depends upon height of avatars.
Reply With Quote
  #100  
Old 02-16-2008, 02:43 AM
slmoney slmoney is offline
 
Join Date: Jul 2007
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ditto what Alfa1 said...
Reply With Quote
  #101  
Old 02-16-2008, 05:23 PM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Aside from the bugs above, I have a feature request:

- latest changed profiles

I know this might be a tedious thing to code, but it is a feature I see on many large Social Networking websites. Plus it makes members want to change their profile.
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 01:27 PM.


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.05132 seconds
  • Memory Usage 2,320KB
  • Queries Executed 26 (?)
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_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
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • 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