vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Mini Mods - microMEMBERS (https://vborg.vbsupport.ru/showthread.php?t=208382)

Ipuck 04-24-2009 02:05 AM

Quote:

Originally Posted by Furcal15 (Post 1791458)
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 :confused:

MaryTheG(r)eek 04-24-2009 09:30 AM

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

Bigj85 04-24-2009 11:12 AM

Quote:

Originally Posted by Ipuck (Post 1797868)
I have the same problem. No answer from the coder :erm:. No post from coder since 3/25 :confused:

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);
  } 


MaryTheG(r)eek 04-24-2009 01:34 PM

Quote:

Originally Posted by Bigj85 (Post 1798040)
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

Bigj85 04-24-2009 01:42 PM

Quote:

Originally Posted by MicroHellas (Post 1798108)
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

john102774 04-24-2009 03:15 PM

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

What is the min donation to remove the copyright? :)

john102774 04-24-2009 03:15 PM

I would like to show my support..

Nadeemjp 04-24-2009 03:21 PM

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:(

MaryTheG(r)eek 04-24-2009 04:00 PM

Quote:

Originally Posted by Bigj85 (Post 1798113)
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

odln018 04-24-2009 04:01 PM

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.


All times are GMT. The time now is 01:55 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01872 seconds
  • Memory Usage 1,794KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete