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

Reply
 
Thread Tools
Member Visit Tracking Details »»
Member Visit Tracking
Version: 3.8.004, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.8.x Rating:
Released: 01-08-2009 Last Update: 09-18-2010 Installs: 229
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

As of 24 Nov 2017 this modification has been withdrawn.

This tracks the number of members that have visited the forum each day, and displays a list in the same manner as the "Who has visited" modification. However, this also tracks a lot more data, such as the script (and request variables) run on their last visit, and all threads and forums visited.

Note that installing this will automatically remove the "Members Who Have Visited Today" modification.

Options / Features ;

* The ability to turn it on/off.
* The ability to turn just the display on/off.
* The ability to allow (or prevent) certain usergroups viewing the display.
* The ability to run the display code on all pages (not just forumhome).
* The ability to switch between 'Today' and Rolling 24 Hours display (default).
* The list of members can be set to be always collapsed on initial view.
* The script that the member is running is logged (e.g. showthread, usercp etc).
* The request variables in use are logged (e.g. threadid, userid etc).
* The member visits table can be cleaned of old records to help control it's size.
* Controls for the automatic template update system.
* Member Views data collection - tracking each members viewing of the forum index page, forums and threads.
* Member Views data collection can be separately disabled.
* Multiple member visits to the same page are logged separately.
* Clicking on a member in the main display will show that members viewing data (if enabled, and you have permission).
* Usergroup permissions are done with the standard vbulleten usergroup permissions system.
* Clicking on the "Total members that have visited" line will list all members who have visited and their last action.
* The option to keep a record of [and display] the most ever members can be enabled.

Four new usergroup permissions are provided in the usergroup manager.

* Can View the Members Visited Display - Members can view the members visited display on Forumhome.
* Can View Member IP Addresses - Members can see the ip addresses of visiting members.
* Can View Member Visits List - Members can view the list of member visits page.
* Can View Member Tracking Data - Members can view the individual member visit tracking page.

* All (non usergroup) modification settings are in vBulletin Options > Member Tracking.

To install;
  • Unzip the XML files.
  • Upload the bitfields file to your ../includes/xml folder.
  • Import the product into vBulletin using the ACP Product Manager.
  • Set your required permissions in the usergroup manager.
Note that by default no permissions are given, you must set them.


Template Hook

Please note that this modification uses the following template hook in the FORUMHOME template ;

forumhome_wgo_pos2

This must be present in any customised template/style you are using, otherwise this modification will not display.



History:

v3.8.001 : Initial vb 3.8 release.
v3.8.002 : Fix install code SQL error.
v3.8.003 : Fix column title bug in memberlist display.
v3.8.004 : Fix bug in attachment viewing links.

Show Your Support

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

Comments
  #62  
Old 10-15-2009, 10:19 PM
linuxututs linuxututs is offline
 
Join Date: Oct 2009
Posts: 160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Makc666 View Post
When you visit the page:
Code:
https://vborg.vbsupport.ru/misc.php?do=memberlist
There is a column named "User Name".

The name of that column is a URL
Code:
https://vborg.vbsupport.ru/member.php?userid=
Screenshot:
Attachment 103446

I see a fix for this one:

1.

Add the phrase:
Code:
<phrase name="trm_username" date="1191000001" username="Paul M" version="3.8.002"><![CDATA[<a href='member.php?userid={1}'>{2}</a>]]></phrase>
2.

Find the code:

HTML Code:
  <td class='alt$altclass'>
    <a href='member.php?userid=$memberlist[userid]'>$memberlist[user]</a>
  </td>
Replace it with:

HTML Code:
  <td class='alt$altclass'>
    $memberlist[user]
  </td>
3.
Find the code:

PHP Code:
$memberlist['user'] = $username[$memberlist['userid']]; 
Replace it with:

PHP Code:
$memberlist['user'] = construct_phrase($vbphrase['trm_username'],$memberlist[userid],$username[$memberlist['userid']]); 
And all works fine then
Mine seems to working fine, but if these edits are correct , please do tell where to edit these edits.
And thank you, and Thanks for the Mod also.

Thanks,
Reply With Quote
  #63  
Old 10-16-2009, 04:52 AM
segwayon segwayon is offline
 
Join Date: Mar 2008
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If I already have the "Members who have visited today" mod, can I install this one, too? Should I first uninstall that one to get the more features of this one?

Update: Wow, there was my answer on paragraph 1! Thanks Paul! [embarrassed] . . .
Reply With Quote
  #64  
Old 10-16-2009, 09:46 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Perhaps you should read the main post

Quote:
Note that installing this will automatically remove the "Members Who Have Visited Today" modification.
Reply With Quote
  #65  
Old 10-16-2009, 12:29 PM
segwayon segwayon is offline
 
Join Date: Mar 2008
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Paul,

I don't see the member tracking options within the Usergroup Manager, but the general options are under the VBOptions list. Am I looking for 4 new options within an existing header? Or should they be contained within a new 'Member Tracking' header?
Reply With Quote
  #66  
Old 10-16-2009, 01:11 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry, Im not sure what your asking. What exactly are you looking for ?
Reply With Quote
  #67  
Old 10-16-2009, 06:09 PM
segwayon segwayon is offline
 
Join Date: Mar 2008
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M View Post
Sorry, Im not sure what your asking. What exactly are you looking for ?
I'm looking for the viewing permissions within the UserGroup Manager. There I can see your 'Guest Tracking Permissions' options listed but not this new 'Member Tracking' options. I also tried to uninstall this mod and reinstall it but there's still no options for usergroups to view the member tracking page or the new tracking data on forumhome's 'whats going on' area.
Reply With Quote
  #68  
Old 10-16-2009, 06:58 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The you probably havent uploaded the bitfield file to the correct place.
Reply With Quote
  #69  
Old 10-17-2009, 12:29 AM
segwayon segwayon is offline
 
Join Date: Mar 2008
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M View Post
The you probably havent uploaded the bitfield file to the correct place.
Yes, that was it. I saw the "/includes/" folder in the instructions but not the "/xml/". Thanks again, Paul!
Reply With Quote
  #70  
Old 10-18-2009, 11:00 PM
oldlock oldlock is offline
 
Join Date: Jul 2009
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've just installed this on a new site running 3.8.4 PL1 and it's not working . Odd, I have it working fine on other sites that have been upgraded to 3.8.4 PL1 .. (note they were upgraded with the patch files)

The sites are running the same mods too, which would seem to discount a conflict with other mods but point towards a conflict of some kind with the PL1 ???
Reply With Quote
  #71  
Old 10-19-2009, 08:43 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PL1 has zero effect on this (or any modification I would think).

Most likely the style you are using is missing the template hook.
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 03:47 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.05098 seconds
  • Memory Usage 2,325KB
  • 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
  • (3)bbcode_code
  • (2)bbcode_html
  • (2)bbcode_php
  • (4)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
  • (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