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

Reply
 
Thread Tools
microMEMBERS Details »»
microMEMBERS
Version: 1.0.0, by MaryTheG(r)eek MaryTheG(r)eek is offline
Developer Last Online: Mar 2012 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.8.1 Rating:
Released: 03-14-2009 Last Update: 04-23-2009 Installs: 155
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

<U>
Removed by the Author because:
  • For 7 mods, there are 1905 downloads but only 577 clicked installed.
  • For these 577 installs I got 4 donations for Brand Free. Make a simple search on the net using the product name and you'll find that 50% have illegally removed my copyright.
  • I found 3 vb.org style sites, offering for download my mods but after PAID SUBSCRIPTION, or DONATION
After all, I'll stop be the idiot on this market.

Maria
</U>
microMEMBERS
A Member list replacement
Compatible with versions: 3.6.x - 3.7.x - 3.8.x



1.- What's this?







Replace the ugly Memberlist with a nice looking one and add more features like:
  • Member Ratings
  • Top Members
  • Featured Members
  • Improved Profile view
2.- Installation
  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.- Copyright


The script cannot be redistributed, reproduced, or published in any way. Modifying this script and sharing or publishing your modification A-N-Y-W-H-E-R-E without the author's written permission is not allowed, but you can modify it as you want but just for your own use.

Removing the copyright link back to our site is strictly prohibited without a donation.

Enjoy it!!
Mary

Show Your Support

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

Comments
  #122  
Old 04-24-2009, 02:05 AM
Ipuck's Avatar
Ipuck Ipuck is offline
 
Join Date: Jun 2006
Location: California
Posts: 131
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Furcal15 View Post
Hey bro, my Top Posters of the week/month/overall are updated correctly. Some of the least active posters are in the lead. How do I go about fixing this?

Beautiful mod by the way.
I have the same problem. No answer from the coder :erm:. No post from coder since 3/25
Reply With Quote
  #123  
Old 04-24-2009, 09:30 AM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Today I decided to let all my modules here unsupported, as I seen that most members dosen't respects my work, the time that I spent to develope and support them. Worst of all they don't respect even the laws.

I didn't asked anything in exchange. No money, not even to register in my site as most other developers ask for. What I asked, and I was expecting to find from their side, is a small gredit to me as a person, by letting my copyright in place.

Unfortunatelly, doing a simple search in Google (anybody can check it) for "vbulletin memberindex" I found dozens of sites having removed my copyright. Thank you all of you my dear. You're giving a shit to the only rule that I put. But I'm wondering why you don't dare to remove Jelsoft's copyright. Because it's a big company while I'm just a single person, much more, a woman. My congratulations men!!

One of them was so cool that registered in my site and post:
Quote:
i saw this on vbulletin.org and thought i'd like to point something out here.
copyrighting a vbulletin addon? and trying to charge to remove the link?
heres a tip for you, rewrite the copyright to ITS FREE, DO WHAT YOU WANT. and go for a donation based system.
because guess what, thats just shitty. ++++ copyrights. specially for a addon to a forumsoftware.
Of course I don't plan to punish all other honest members who respected me. I'll continue posting most of my modules for free, I'll continue supporting them, but on my site only or to sites which accept encoded modules. Free yes... But not with visible source code any more. It's my intellectual property and I'll protect it.

Classifieds and MemberIndex will continue unencoded as they're right now. But unsupported.

Thank you for your understanding (this goes to honest users).
Mary
Reply With Quote
  #124  
Old 04-24-2009, 11:12 AM
Bigj85 Bigj85 is offline
 
Join Date: Jan 2009
Location: Guelph,Ontario,Canada
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ipuck View Post
I have the same problem. No answer from the coder :erm:. No post from coder since 3/25
well it looks like you won't get any help from the developer so...

I think you have the same problem I did,you have usergroups that you created other than the default "registered members" group
you need to define these groups in the memberidex.php
file of the addon

Open memberidex.php and look for the lines // Week's Top Posters // Month's Top Posters and // Overall Top Posters under those lines you will find

PHP Code:
WHERE usergroupid=
now you wanna add the groupids of your custom groups
like this

PHP Code:
WHERE usergroupid=OR usergroupid=OR usergroupid=
replace the x's with the ids of your groups,you can find the group id by going in your admin cp and navigating to "Usergroups/Usergroup Manager"

save the file and reupload it and it should now show the posters from all your groups

here's what mine looks like,hope this helps

PHP Code:
  // Week's Top Posters
  
if ($vbulletin->options[micromembers_week] == '1') {
        
$timelimit time() - 24 60 60;
        
$mostactiveweek_get $db->query_read("
          SELECT "
.TABLE_PREFIX."user.userid, ".TABLE_PREFIX."user.username, ".TABLE_PREFIX."user.usertitle,
            COUNT("
.TABLE_PREFIX."post.postid) AS postcount
          FROM "
.TABLE_PREFIX."user 
          LEFT JOIN "
.TABLE_PREFIX."post
            ON "
.TABLE_PREFIX."post.userid=".TABLE_PREFIX."user.userid
            AND dateline>
$timelimit
          WHERE usergroupid=2 or usergroupid=2 or usergroupid=5 or usergroupid=6 or usergroupid=7 or usergroupid=8 or usergroupid=11 or usergroupid=12
          GROUP BY "
.TABLE_PREFIX."user.userid
          ORDER BY postcount DESC 
          LIMIT 
$limit");
        
$users = array();
        while(
$user $db->fetch_array($mostactiveweek_get))
          
$users[] = $user;
        
$totalposts $db->query_first("SELECT COUNT(postid) AS postcount FROM ".TABLE_PREFIX."post WHERE dateline>$timelimit");
        
$mostactiveusersweek printUsers($users$vbulletin->options['micromembers_week_text'], 2$totalposts['postcount']);
        unset(
$users);
  }
  
  
// Month's Top Posters
  
if ($vbulletin->options[micromembers_month] == '1') {
        
$timelimit time() - 30 24 60 60;
        
$mostactivemonth_get $db->query_read("
          SELECT "
.TABLE_PREFIX."user.userid, ".TABLE_PREFIX."user.username, ".TABLE_PREFIX."user.usertitle,
            COUNT("
.TABLE_PREFIX."post.postid) AS postcount
          FROM "
.TABLE_PREFIX."user 
          LEFT JOIN "
.TABLE_PREFIX."post
             ON "
.TABLE_PREFIX."post.userid=".TABLE_PREFIX."user.userid
           AND dateline>
$timelimit
          WHERE usergroupid=2 or usergroupid=2 or usergroupid=5 or usergroupid=6 or usergroupid=7 or usergroupid=8 or usergroupid=11 or usergroupid=12
          GROUP BY "
.TABLE_PREFIX."user.userid
          ORDER BY postcount DESC 
          LIMIT 
$limit");
        
$users = array();
        while(
$user $db->fetch_array($mostactivemonth_get))
          
$users[] = $user;
        
$totalposts $db->query_first("SELECT COUNT(postid) AS postcount FROM ".TABLE_PREFIX."post WHERE dateline>$timelimit");
        
$mostactiveusersmonth printUsers($users$vbulletin->options['micromembers_month_text'], 2$totalposts['postcount']);
        unset(
$users);
  }

  
// Overall Top Posters
  
if ($vbulletin->options[micromembers_overall] == '1') {
        
$mostactive_get $db->query_read("
          SELECT userid, username, usertitle, posts AS postcount
          FROM "
.TABLE_PREFIX."user 
          WHERE usergroupid=2 or usergroupid=2 or usergroupid=5 or usergroupid=6 or usergroupid=7 or usergroupid=8 or usergroupid=11 or usergroupid=12
          ORDER BY posts DESC 
          LIMIT 
$limit");
        
$users = array();
        while(
$user $db->fetch_array($mostactive_get))
          
$users[] = $user;
        
$totalposts $db->query_first("SELECT COUNT(postid) AS postcount FROM ".TABLE_PREFIX."post");
        
$mostactiveusers printUsers($users$vbulletin->options['micromembers_overall_text'], 2$totalposts['postcount']);
        unset(
$users);
  } 
Reply With Quote
  #125  
Old 04-24-2009, 01:34 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bigj85 View Post
well it looks like you won't get any help from the developer so...
Open memberidex.php and look for the lines // Week's Top Posters // Month's Top Posters and // Overall Top Posters under those lines you will find

PHP Code:
WHERE usergroupid=
now you wanna add the groupids of your custom groups
like this

PHP Code:
WHERE usergroupid=OR usergroupid=OR usergroupid=
replace the x's with the ids of your groups,you can find the group id by going in your admin cp and navigating to "Usergroups/Usergroup Manager"
Don't always shoot the developer. Spend some time to read the previous posts. I've replied on it some pages before (page #3):
https://vborg.vbsupport.ru/showpost....9&postcount=45

Maria
Reply With Quote
  #126  
Old 04-24-2009, 01:42 PM
Bigj85 Bigj85 is offline
 
Join Date: Jan 2009
Location: Guelph,Ontario,Canada
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MicroHellas View Post
Don't always shoot the developer. Spend some time to read the previous posts. I've replied on it some pages before (page #3):
https://vborg.vbsupport.ru/showpost....9&postcount=45

Maria
I just wanted to help since it looked like you weren't supporting it anymore
personally I think micromembers is a great addon,sorry if you feel members here don't respect your work but I can tell you I respect your work

great addon,thanks for the work you put in on it
Reply With Quote
  #127  
Old 04-24-2009, 03:15 PM
john102774 john102774 is offline
 
Join Date: Aug 2008
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm loving this Hack!!! Good stuff.

What is the min donation to remove the copyright?
Reply With Quote
  #128  
Old 04-24-2009, 03:15 PM
john102774 john102774 is offline
 
Join Date: Aug 2008
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would like to show my support..
Reply With Quote
  #129  
Old 04-24-2009, 03:21 PM
Nadeemjp Nadeemjp is offline
 
Join Date: Aug 2008
Location: Japan
Posts: 601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i am still not able to properly put it but i am shocked to see that members dont respect the wish of the developer. if i have paid for the hack then i may wanna remove the copyright but if it is free then i must respect the author. if mary is upset, she has every right to. sorry maria for all of this
Reply With Quote
  #130  
Old 04-24-2009, 04:00 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bigj85 View Post
I just wanted to help since it looked like you weren't supporting it anymore
I can't let 400+ members who installed Classifieds & microMEMBERS alone on the streets. By saying not supporting, means first priority to my site, and no upgrades (here).
Thank you for your supporting words.

Maria
Reply With Quote
  #131  
Old 04-24-2009, 04:01 PM
odln018's Avatar
odln018 odln018 is offline
 
Join Date: Mar 2006
Posts: 210
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't see what the big deal is in leaving the copyright? It makes sense to leave it, so others can obtain it, and allow the developer to realize how desirable a mod is.

Mary, I've installed it, and am currently testing it. I was hoping to ask a few questions, but respect your desire to wash your hands of it.

It does sadden me though.
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 10:40 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.05110 seconds
  • Memory Usage 2,365KB
  • 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
  • (5)bbcode_php
  • (6)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
  • (1)pagenav_pagelinkrel
  • (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