Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[DBTech] User Spotlight v1 (vB4) Details »»
[DBTech] User Spotlight v1 (vB4)
Version: 1.6.6, by DragonByte Tech DragonByte Tech is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 11-30-2010 Last Update: 08-16-2017 Installs: 147
Uses Plugins Auto-Templates
Additional Files Translations Is in Beta Stage  
No support by the author.

DragonByte Technologies are proud to present User Spotlight v1: A mini mod to show a random member on your forumhome page.


Why User Spotlight?

DBTech's User Spotlight mod lets you display a random member on your forum home page as a way to increase member commmunication.

-------------------------------------------------------------------------------------------

If you like this mod please hit the button to the right ---->

Please remember to click the, button to the right if you installed the mod ---->

What does 'Marking As Installed' do ?

* It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available.

*
For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention.

* Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications.

We appreciate the support!

-------------------------------------------------------------------------------------------

Priority support for this version is handled at the Developers Website.

-------------------------------------------------------------------------------------------

Major Features

ForumHome Integration: Members' details will show in the infobar on the forumhome.

-------------------------------------------------------------------------------------------

Feature List
  • Random user selected every night
  • Admin override of selected user
  • Admin variables to limit selected users by number of posts, reputation and days active

-------------------------------------------------------------------------------------------

This mod displays a copyright notification in the footer of the forum home page which includes:
  • 1 Link to DragonByte Technologies homepage
  • 1 Link to Product Description page of this modification

Download Now

File Type: zip [DBTech] User Spotlight v1.6.6.zip (18.5 KB, 18 views)

Screenshots

File Type: png forumhome.png (30.1 KB, 0 views)
File Type: jpg acp_settings.jpg (114.1 KB, 0 views)

Show Your Support

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

Comments
  #102  
Old 01-07-2011, 03:49 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tattooz View Post
I am having a problem getting the cron to update daily. I have it set to daily in the options and my scheduled task is set to 00 0 * * * Which should be "every day of every month at 0 hour and 0 minutes" But for some reason, it does not update......

Any ideas?
Did you modify the scheduled task?

In the settings what do you have set for the field
Spotlight Next Cron Run

Also, if you look at the scheduled tasks log, you should see entries in there for the spotlight script
Reply With Quote
  #103  
Old 01-07-2011, 04:37 PM
tattooz tattooz is offline
 
Join Date: Aug 2010
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
Did you modify the scheduled task?

In the settings what do you have set for the field
Spotlight Next Cron Run

Also, if you look at the scheduled tasks log, you should see entries in there for the spotlight script
This is what is there, 1294498267
Reply With Quote
  #104  
Old 01-07-2011, 04:38 PM
Taurus1's Avatar
Taurus1 Taurus1 is offline
 
Join Date: Dec 2009
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The avatars are still not showing.
Reply With Quote
  #105  
Old 01-07-2011, 05:14 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Taurus1 View Post
The avatars are still not showing.
If you open dbtech/spotlight/core/class_fetchuser.php
on line 162 replace
Code:
$spot_avatar_file = $this->registry->options['homeurl'] . "/" . $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
with

Code:
$spot_avatar_file = $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
does that fix it?
I was checking out what the vB code does for avatars and I think I'm doing some overkill which is screwing it up for different types of setups.
Reply With Quote
  #106  
Old 01-07-2011, 06:22 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tattooz View Post
This is what is there, 1294498267
That's set for 2:51 tomorrow afternoon (GMT).
Are there any log entries for spotlight in the scheduled task log?
Reply With Quote
  #107  
Old 01-07-2011, 09:13 PM
OMAN_LOVER OMAN_LOVER is offline
 
Join Date: Jun 2005
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

good one but it increased the load of my server
I tried to stop the product but it seems no option to do that only I have to uninstall it please check
I'm using vb410
also even if I disabled it from products still it not stop

Minimum Days since Last Post & Minimum Days dosn't work please also have a look on it

Thank you
Reply With Quote
  #108  
Old 01-08-2011, 12:16 AM
Smak Runner 2K Smak Runner 2K is offline
 
Join Date: Jun 2007
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
If you open dbtech/spotlight/core/class_fetchuser.php
on line 162 replace
Code:
$spot_avatar_file = $this->registry->options['homeurl'] . "/" . $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
with

Code:
$spot_avatar_file = $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
does that fix it?
I was checking out what the vB code does for avatars and I think I'm doing some overkill which is screwing it up for different types of setups.
My avatar URL in the sidebar is pointing to forumhome

http://www.clevelandsportsforums.com/forums/forum.php. I made the change you mention in the quoted post, but it didn't help. Avatars are stored in the file system, and I downloaded the latest version.

Help? I'm at a loss...
Reply With Quote
  #109  
Old 01-08-2011, 12:46 AM
Taurus1's Avatar
Taurus1 Taurus1 is offline
 
Join Date: Dec 2009
Posts: 648
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DragonByte Tech View Post
If you open dbtech/spotlight/core/class_fetchuser.php
on line 162 replace
Code:
$spot_avatar_file = $this->registry->options['homeurl'] . "/" . $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
with

Code:
$spot_avatar_file = $this->registry->options['avatarurl'] . "/avatar" . $this->registry->options['dbtech_spotlight_rnd_userid'] . "_" . $rand_user_data['avatarrevision'] . ".gif";
does that fix it?
I was checking out what the vB code does for avatars and I think I'm doing some overkill which is screwing it up for different types of setups.
Thank you very much! That fixed it!! And thanks for your great support. :up:
Reply With Quote
  #110  
Old 01-08-2011, 12:55 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Smak Runner 2K View Post
My avatar URL in the sidebar is pointing to forumhome

http://www.clevelandsportsforums.com/forums/forum.php. I made the change you mention in the quoted post, but it didn't help. Avatars are stored in the file system, and I downloaded the latest version.

Help? I'm at a loss...
The avatar url for the webmaster is
http://www.clevelandsportsforums.com...sc/unknown.gif

It looks like you have something that sets that as the default if the user doesn't have an avatar? I saw several users that showed that image for the avatar and profile image.

The one user I saw that had an avatar looks like it's stored in the db.
http://www.clevelandsportsforums.com...647&type=thumb
Reply With Quote
  #111  
Old 01-08-2011, 12:56 AM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Taurus1 View Post
Thank you very much! That fixed it!! And thanks for your great support. :up:
Glad we got it worked out.
I'll make sure the changes are in the next release so it matches the vB type path and we shouldn't run into this problem again
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 07:45 PM.


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.10361 seconds
  • Memory Usage 2,356KB
  • Queries Executed 26 (?)
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
  • (6)bbcode_code
  • (8)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
  • (3)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete