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

Reply
 
Thread Tools
Widgetizer - Build dynamic thread widgets in and outside vBulletin Details »»
Widgetizer - Build dynamic thread widgets in and outside vBulletin
Version: 1.00, by ibautocommunity ibautocommunity is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.8.3 Rating:
Released: 08-13-2009 Last Update: 08-18-2009 Installs: 28
Uses Plugins
Re-useable Code Additional Files Translations  
No support by the author.

Product name: Widgetizer

Level of Difficulty: Moderate, this product requires a good understanding of CSS, HTML and vBulletin.

Who should use this product: Webmasters who wants to really customize their vBulletin, webmasters that have non-vBulletin CMS pages that want to integrate forum thread widgets into their non-vbulletin pages.

Support: This product is NOT supported.

What does it do?

This product automatically builds and caches (no load issues!) dynamic widgets for Newest Threads, Featured Forum, Marketplace, Most Active in 24 hours, Most Popular, and allows you to CSS style and add these blocks anywhere, including NON-VBulletin pages!

Live demo:

- vB Widgets on non-vB pages:
http://www.scionlife.com (latest posts & features news)
http://www.my350z.com
http://www.mbworld.org
http://www.mustangforums.com/forum -widgets built into the right column on forum

Download Now

File Type: zip widgetizer-complete.zip (13.6 KB, 161 views)

Show Your Support

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

Comments
  #22  
Old 08-18-2009, 08:59 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ozidoggy View Post
Says example code inside widgets.php.... Hmmmm there is no widgets.php?
Agreed!

Ohh Developer lol??
Reply With Quote
  #23  
Old 08-18-2009, 10:02 PM
shaunceb shaunceb is offline
 
Join Date: May 2009
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
Agreed!

Ohh Developer lol??
I'll third that.


Any chance of some example code please?
Reply With Quote
  #24  
Old 08-19-2009, 01:01 AM
ibautocommunity's Avatar
ibautocommunity ibautocommunity is offline
 
Join Date: Jan 2009
Location: Los Angeles, CA
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry guys, I reuploaded the zip file with widgets.php

Thanks a lot.
Reply With Quote
  #25  
Old 08-19-2009, 01:24 AM
Ozidoggy Ozidoggy is offline
 
Join Date: Jun 2008
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea how to fix this error?


Quote:
Invalid SQL:
SHOW TABLES LIKE vb_'ibportal';

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'vb_'ibportal'' at line 1
Error Number : 1064
Request Date : Tuesday, August 18th 2009 @ 02:19:33 PM
Error Date : Tuesday, August 18th 2009 @ 02:19:51 PM
Script : http://www.mysite.com.au/forum/cron.php?rand=825562
Referrer : http://www.mysite.com.au/forum/links...ing-kennels-3/
IP Address : xxx.xx.xxx.xx
Username : Unregistered
Classname : vB_Database
MySQL Version :
Reply With Quote
  #26  
Old 08-19-2009, 02:11 AM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

another nice mode from the IB guys
now this is how you make the members happy
good job to internetbrands
Reply With Quote
  #27  
Old 08-19-2009, 03:35 PM
Addams Addams is offline
 
Join Date: Jul 2009
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! Installed and working now outside of vbulletin!
http://theslayingthing.net/widgets.php

Just a little sugestion to a new version... could be cool add a stats widget
Reply With Quote
  #28  
Old 08-28-2009, 02:18 PM
DGsemiPROoCOM DGsemiPROoCOM is offline
 
Join Date: Aug 2009
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

a widget for the "video directory" would be awesome as well

recent vids
top vids
etc...
Reply With Quote
  #29  
Old 09-06-2009, 09:21 PM
Robofuzz Robofuzz is offline
 
Join Date: Feb 2009
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ozidoggy View Post
Any idea how to fix this error?
Getting a similar error. Seems to be an issue with the table prefixes?
Reply With Quote
  #30  
Old 09-06-2009, 09:27 PM
Robofuzz Robofuzz is offline
 
Join Date: Feb 2009
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ozidoggy View Post
Any idea how to fix this error?
I fixed the problem. There is an error in one sql query when you have a table prefix. In the class_ibwidgets.php file search for this code:

Code:
$check = "SHOW TABLES LIKE " . TABLE_PREFIX . "'ibportal'";
and replace with this:

Code:
$check = "SHOW TABLES LIKE '" . TABLE_PREFIX . "ibportal'";
There's a misplaced single quote in that statement. Just moving the single quote to the other side of the TABLE_PREFIX fixes the issue.
Reply With Quote
  #31  
Old 09-15-2009, 06:06 PM
uprentiss uprentiss is offline
 
Join Date: Mar 2009
Posts: 94
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /homepages/42/d253160043/htdocs/includes/class_ibwidgets.php on line 5

i get this error wtf
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 09:10 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.04820 seconds
  • Memory Usage 2,330KB
  • 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
  • (2)bbcode_code
  • (5)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
  • (3)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
  • (1)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