The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vB3 Forumhome Stats Cache Serialize hack v2.2 Details »» | |||||||||||||||||||||||||||
vB3 Forumhome Stats Cache Serialize hack v2.2
Developer Last Online: Jun 2012
vB3 Forumhome Stats Cache Serialize hack
Version 2.2 (By Boofo) What does this hack do? This hack will add some forum statistics to your forumhome that will be cached (to reduce the query load) for a certain amount of time that can be set to whatever you want. This covers most of the stats any forum Admin would use on his site. Note: This is the setting for the time interval (in minutes) that you want the cache to be updated on. The default value is 10 minutes. The following code is in the index.php part of this hack. $updatetime = 10; Once you install the Admin CP setting (at the end of this file), you will be able to update this from the Admin CP vBulletin Options settings. Credits: I want to thank Tigga for the original Forumhome Statistics Cache hack for vB2, partly on what this hack is based. I also want to thank EvilLS1 for his time and patience in helping put this hack together. Another thank you goes out to Mike Gaidin for testing this thoroughly while I was putting together this install file. And, finally, thank you goes out to NTLDR, for helping me track down a very stupid mistake on my part which I had overlooked. Version 2.0 credits go out to g-force2k2 for getting me started on the datastore version of this hack and guiding me through some of the rough parts in the beginning. And also to KirbyDE for answering all of my dummy questions while writing this version and verifying the code when I figured out all of my mistakes. This is my first attempt at using the datastore function but it seems to work better and be easier to code than the older way of doing things. Version Information: Version 1.0 --Initial release Version 2.0 --Completely rewritten using the datastore function for vB3. It now uses "serialize" to store the data and "unserialize" to retrieve the data. There is also now 1 less query when reading from the cache. Version 2.1 --Combined the "new threads since last visit" and "new posts since last visit" queries into 1 query, thus eliminating another query on cache hits. Thanks goes out to g_force2k2 for this one. Also added Admin CP setting code so you can change the time interval between cache updates via the Forum Display Option setting in the vBulletin Option in the Admin CP. That code to add is at the end of this file. Version 2.2 --Added "Top Reputation" statistic (requested by rinkrat ) and totally re-did the template. It looks cleaner now. New Installation: Do all of the steps in this file. To Update Version 1.0 to Version 2.0: To update this hack you will need to do everything in this file over again except the second query (Query #2). After you have this hack up and running again and you have made sure it is running to your satisfaction, you can drop the statscache table (from version one of this hack) completely. It is no longer needed. To Update Version 2.0 to Version 2.1: You will need to re-add the code for the index.php and go to the end of this file and add the setting for the Admin CP. To Update Version 2.1 to Version 2.2: You will need to re-add the code for the index.php and replace the code for the forumhome template. Installation overview: Queries to run: (2) Files to edit: (2) --index.php --member.php Templates to edit: (1) --forumhome Settings to add: (1) --forumhomecachetime vB3 Arcade hack stats addon: https://vborg.vbsupport.ru/showpost....&postcount=262 The first attachment shows the Guest loggedin and the second attachment show the Registered Member and above loggedin. Show Your Support
|
Comments |
#62
|
|||
|
|||
I seem to be having some major problems with this hack.
First, the total registrations count is more than double what my actual registrations are. Also, how are active members calculated as opposed to people who are a part of the total registrations, and can this be modified. Also, my top referer isn't showing up as you can see in this screenshot. I am using vB3 Gold if that makes any difference. |
#63
|
|||
|
|||
Ok, here is the piece of code
Code:
// <!-- TOP POSTER --> $topposter = $DB_site->query_first(" SELECT username,posts,userid FROM " . TABLE_PREFIX . "user ORDER BY posts DESC LIMIT 1 "); // <!-- TOP THREAD STARTER --> $topstarter=$DB_site->query_first(" SELECT COUNT(*) AS count,postuserid,postusername FROM " . TABLE_PREFIX . "thread GROUP BY postuserid ORDER BY count DESC LIMIT 1 "); BTW, I tried to set my lanuage to english but even though, the link to the members profile is still wrong. The link doesn't show up like: www.forum.url/forum/member.php?u=3512 it shows like: www.forum.url/forum/member.php?u=3,512 (<-- see the comma?) When I turn it back to german, I have a dot there instead of the comma, which is the german separator for a thousand. This also happens with topposter, Most Viewed Profile and Top Referrer. With the welcome newest member it is fine. In both languages. |
#64
|
||||
|
||||
Ok, change this query:
PHP Code:
PHP Code:
PHP Code:
|
#65
|
||||
|
||||
Quote:
|
#66
|
|||
|
|||
Quote:
|
#67
|
||||
|
||||
Thank you.
Ok, the Total Registrations are the total regsitrations you have EVER had on your board. When you delete accounts for whatever reason, the Active Registrations are what is left. That is the ACTUAL number of memebers on your site. Does that make any sense. As far as the userids not being correct, follow the instructions above and delete those lines and when the next cache update is run, it should straighten everything out for the userids. Also, make sure you have the referrer sysem enabled in the Admin CP. If it is, then you missed a piece of code when installing the hack. Look at the spot where the name should be in the code and tell me what is there right now. |
#68
|
|||
|
|||
Quote:
Code:
Database error in vBulletin 3.0.0: Invalid SQL: SELECT COUNT(*) AS count,postuserid,postusername FROM thread WHERE usergroupid IN (2,5,6,7) GROUP BY postuserid ORDER BY count DESC LIMIT 1 mysql error: Unknown column 'usergroupid' in 'where clause' mysql error number: 1054 Date: Wednesday 24th of March 2004 03:03:48 AM Script: http://www.spassforen.de/forum/index.php? Username: Alex IP Address: xxx.xxx.xxx.xxx |
#69
|
||||
|
||||
Ok, redo the code with the query from the post above again (you will notice it is different now). I had to change it and you had already re-done it before the post edit. Sorry about that.
|
#70
|
|||
|
|||
Quote:
|
#71
|
|||
|
|||
Now we're talking. Thanx dude! Oh, and if you have a minute, phrasing all that stuff into the vB's Phrase System would be nice. I do that one now on my own.
Thanks again! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|