The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Activity Modification Details »» | |||||||||||||||||||||||||
For vB3.7, see The vB3.7 version
This is the plugin/vB3.5/vB3.6 version of this hack This mod was developed on vB3.6.4, and tested for compatibility with vB3.5.4 Description This hack adds an activity metric for users to your forum; this metric takes into account a variable number of weeks. Also provided is a Junior/Normal/Senior member system based on this metric, and a longevity metric (user registered time as a percent of the amount of time the first user has been registered). Visiting each day and posting the configured amount of times per day for the configured number of weeks will yeild 100% activity. Posts are checked individually for each day, so days cannot be skipped then spammed up afterwards. The weight of visiting for the day relative to posting is configurable. Weeks are weighted so the most recent has a bigger impact on the activity percent than the most distant. When a user logs in with activity above the configured threshold, they are promoted from Junior Member to Member. When they log in with the configured amount of time as Member, they are promoted to Senior Member. You can configure the mod to also add secondary usergroups when these promotions happen. Complexity This modification requires 1 XML import, modification to 3 templates, and the addition of some CSS, depending on what options you choose Technical This hack adds 1 query to showthread for each user who posts in that page (or only 1 for the logged in user by configuration). In addition, the first time a member's post or profile is accessed during a day (GMT), 3 queries are performed to find that user's activity. By configuration, 1 query may be added to each page load to find the logged in user's "activity today". By configuration, 1 query may be added to each member profile view to find that member's "activity today". Upgradability This modification will import your settings and data from the 3.0/hack version Frequently Asked Questions
Note: To upgrade, with the old version still installed, go to the Add/Import Product link on the Manage Products page, select the XML file for the new version, choose Yes for overwrite, then click Import. 2.80 release update
Please click the install link if you install this hack I will support this hack in this thread on about a weekly basis. Show Your Support
|
Comments |
#502
|
||||
|
||||
It looks like your browser cannot find the images and is displaying the "alt" content, instead. You need to upload one of the "activity" folders in the zip file to misc folder of each style. So if you go to AdminCP>Style Manager>My Style>Style vars, and the misc image directory is
images/mycoolstyle/misc then you need to make sure that the activity folder is in that directory so the path to an image would be, for example images/mycoolstyle/misc/activity/activity0.gif |
#503
|
||||
|
||||
As I said, it shouldn't be too hard to do. Why don't you contact them yourself and ask for it?
|
#504
|
|||
|
|||
The 'Today' activity bar isnt working, any suggestions on what i need to check?
|
#505
|
|||
|
|||
hello i have question about this great hack
in this area domain.com/index.php?do=activitystat it shows my username what about color because every single group have other color to recognise it could you explain me how to make colors for /index.php?do=activitystat ? or maybe add some other option like it is in members.php ? thay you for replay |
#506
|
|||
|
|||
i contact them but they didn't give me can you make it?
|
#507
|
||||
|
||||
Quote:
|
#508
|
||||
|
||||
Quote:
Go to AdminCP|Plugin System|Plugin Manager, and find the Activity Modification plugin named "Top Activity" for forumhome_start. find Code:
//*****************************
// Display the top X activity
$count=0;
$userlist='0';
foreach($WWU002statdata as $index=>$value){
$userlist.=','.$value[0];
}//endforeach($WWU002statdata as $index=>$value)
$exists=$vbulletin->db->query_read('SELECT posts,userid,usergroupid,membergroupids,username FROM '.TABLE_PREFIX.'user WHERE userid IN ('.$userlist.')');
$userlist=array();
while($existuser=$vbulletin->db->fetch_array($exists)){
$userlist[intval($existuser['userid'])]=$existuser;
}//endwhile($existuser=$vbulletin->db->fetch_row($exists))
$vbulletin->db->free_result($exists);
Code:
//*****************************
// Display the top X activity
$count=0;
$userlist=array();
foreach($WWU002statdata as $index=>$value){
$userlist[intval($value[0])]=fetch_userinfo($value[0]);
}//endforeach($WWU002statdata as $index=>$value)
Code:
$info[1]=$userinfo['username']; Code:
$info[1]=$userinfo['musername']; |
#509
|
||||
|
||||
I do not use vBA and thus do not have the knowledge to write it, nor the means of testing it.
|
#510
|
|||
|
|||
My forum uses postbit_legacy exclusively. When I did the template edits, all the user titles in postbit area were missing. Even after I undid the template edits, no user titles were showing. Only when I uninstalled the product did they reappear.
Is it possible to completely disable the user rank and title stuff in the postbit areas? I tried turning this off in the admin CP, but it didn't seem to work. Also, if my forum only uses postbit_legacy, do I still need to do the postbit template edits? Thanks! |
#511
|
||||
|
||||
What version of vB are you using?
To confirm, when you re-install the product, the user-titles linked to postcount and usergroup disappear? The mod is not supposed to hide any existing information, only add new information. If you disabled the mod-generated user ranks in the admin CP and it didn't go away, something is wrong. Perhaps you have a caching issue of some sort? I'm using vB 3.6.8 and don't have either of your problems. No, you don't need to edit the "postbit" template, if you don't use it. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|