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

Reply
 
Thread Tools
Members who have posted Today (or in the last 24 hours) Details »»
Members who have posted Today (or in the last 24 hours)
Version: 4.45, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.6.x Rating:
Released: 07-27-2006 Last Update: 10-06-2007 Installs: 409
Uses Plugins Auto-Templates
Translations  
No support by the author.

This modification is no longer available or supported.

This plugin adds a simple display of all members who have posted in the forum - either today (i.e. since midnight) or in the last 24 hours.

The main features of the 3.6 Version are basically the same as previous versions ;

1. It displays the list on Forum Home.
2. The list view is collapsable, so you just see the number of posters.
3. Invisible users are only displayed to those allowed to see them (with a "*")
4. Users who should display as coloured or bold etc will be displayed correctly. (based on the display usergroup)
5. If you 'hover' over a username it will show the time they last posted.
6. The list is in member name order.
7. If you click on a members name it will list their posts.
8. The hack is phrased.
9. The ability to turn it on/off is in the ACP Forum Home Options.
10. The ability to allow only certain usergroups to view the list is an ACP option (include or exclude groups).
11. The switch between Posted Today and Rolling 24 Hours is an ACP option.

Below added in v4.39
12. The listing of names can now be suppressed (a simple message is displayed instead).
13. The list of names can be set to be always collapsed on initial view.
14. The option to record and display the Most Ever posters has been added (v4.45+).


(Options are located in vBulletin Options > Who Has Posted).

Unzip the XML and import into vB using the ACP Product Manager. Make sure you check the display settings once installed.

To upgrade from the 3.5 version just re-import the product with the overwrite option set to yes.


History:

v4.30 : First vb 3.6 release, some code rewrites.
v4.31 : Dependancies updated for 3.6.0 Gold.
v4.32 : Updated for Version Checking.
v4.33 : Added options to disable/change auto template insert (not released).
v4.34 : Internal code changes (not released).
v4.35 : Options moved to own settings group.
v4.36 : Minor phrasing changes.
v4.37 : Fixed broken phrases.
v4.38 : SQL Changes to use slave.
v4.39 : Added new template for username display code, added two new options.
v4.40 : Fix uncached template.
v4.41 : Fixed table index issues.
v4.42 : Moved auto-template options to mods main settings group.
v4.43 : Usergroup display options added, other minor changes.
v4.44 : Updated to not load all user data when username display is disabled.
v4.45 : Most Ever posters option added.

Show Your Support

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

Comments
  #72  
Old 01-12-2007, 09:17 PM
JamieLee2k's Avatar
JamieLee2k JamieLee2k is offline
 
Join Date: Sep 2006
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Same thing
Code:
Database error in vBulletin 3.6.4:

Invalid SQL:

				INSERT INTO _vbsetting
					(varname, grouptitle, value, defaultvalue, datatype, optioncode, displayorder, advanced, volatile, validationcode, blacklist, product)
				VALUES
					(
					'enable_wpt',
					'paulmseti',
					'1',
					'1',
					'boolean',
					'yesno',
					30,
					0,
					1,
					'',
					0,
					'paulm_20050613'
	),
	(
					'text_wpt',
					'paulmseti',
					'<!-- end logged-in users -->',
					'<!-- end logged-in users -->',
					'free',
					'',
					35,
					0,
					1,
					'',
					0,
					'paulm_20050613'
	);

MySQL Error  : Duplicate entry 'enable_wpt' for key 1
Error Number : 1062
Date         : Friday, January 12th 2007 @ 06:14:28 PM
Script       : http://www.xleagues.net/forum/admincp/plugin.php?do=productimport
Referrer     : http://www.xleagues.net/forum/admincp/plugin.php?do=productadd
IP Address   : xx.xx.xx.xx
Username     : JamieLee2k
Classname    : vb_database
looking at it, I think it's one of 2 things, something I have installed is conflicting or the database has an issue.
MySQL Error : Duplicate entry 'enable_wpt' for key 1
Reply With Quote
  #73  
Old 01-12-2007, 09:38 PM
JamieLee2k's Avatar
JamieLee2k JamieLee2k is offline
 
Join Date: Sep 2006
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had a look in the AdminCP and the product is there, says it's active, and the settings are correct, it's just not working.

If you want a list of mods I have installed then I can let you know by PM

Thanks
JamieLee2k
Reply With Quote
  #74  
Old 01-13-2007, 03:38 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

The error means that when vb came to add that settings entry (for 'enable_wpt') it found it already existed. If uninstalling the product does not remove that entry from the database then you will have to do it manually.

A list of mods isn't going to be of any use, if you want me to look at a problem then I would need admin access to the forum (with sql query ability).
Reply With Quote
  #75  
Old 01-13-2007, 12:26 PM
wengi's Avatar
wengi wengi is offline
 
Join Date: Aug 2006
Location: Malta
Posts: 171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Gr8 hack paul ... installed nd workin fine

regards
Wengi
Reply With Quote
  #76  
Old 01-13-2007, 06:42 PM
Nathan2006's Avatar
Nathan2006 Nathan2006 is offline
 
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated

Thanks Paul
Reply With Quote
  #77  
Old 01-13-2007, 09:07 PM
WiseOne38221's Avatar
WiseOne38221 WiseOne38221 is offline
 
Join Date: Jun 2006
Location: Big Sandy, TN
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It STOPPED showing the number of members who posted now...it DID show it until this update...
Reply With Quote
  #78  
Old 01-13-2007, 11:02 PM
justachump justachump is offline
 
Join Date: Nov 2005
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed, thanks !
Reply With Quote
  #79  
Old 01-13-2007, 11: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

Quote:
Originally Posted by WiseOne38221 View Post
It STOPPED showing the number of members who posted now...it DID show it until this update...
You have customised either the template or the phrases, you will need to revert them.
Reply With Quote
  #80  
Old 01-19-2007, 02:00 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

Version 4.42 is simply a move of the Auto-template options from a shared group to this modifications own options group. There is no need to update.
Reply With Quote
  #81  
Old 01-19-2007, 01:43 PM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyway i do the update

thx Paul
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 01:54 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.05981 seconds
  • Memory Usage 2,311KB
  • 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
  • (1)bbcode_code
  • (1)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