Version: 1.0.0, by MaryTheG(r)eek
Developer Last Online: Mar 2012
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
Upload all files and directories including at "vbulletin" directory to the directory where vBulletin is installed.
Check at your AdminCP->vBulletin Options->Plugin/Hook System that Plugin system is enabled.
From your AdminCP->Plugin System->Manage Products choose Add/Import Product and import the product: product_memberindex.xml
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.
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.
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
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
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=2
now you wanna add the groupids of your custom groups
like this
PHP Code:
WHERE usergroupid=2 OR usergroupid=x OR usergroupid=x
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() - 7 * 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 * 7 * 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);
}
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=2
now you wanna add the groupids of your custom groups
like this
PHP Code:
WHERE usergroupid=2 OR usergroupid=x OR usergroupid=x
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"
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
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
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.
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.