Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Shoutbox Hack 1.04b Details »»
Shoutbox Hack 1.04b
Version: 1.04b, by GeekyDesigns GeekyDesigns is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 08-29-2004 Last Update: 11-09-2004 Installs: 288
DB Changes
 
No support by the author.

11/09/04 - Version 1.04b. Just an installer upgrade, nothing more. Nothing to see here, move along.

10/22/04 - Version 1.04a released. This is not an upgrade from 1.04. If you already have 1.04 installed, don't worry about this. This release just updates the installer and fixes any errors in it. If you had problems installing it last time, this should work better. If you need support, posting it here may get it answered, though posting at the board at GeekyDesigns.com is prefered.

This is the same hack formerly released by Link14716.

08/30/04 4:19 PM EDT: Fixed a settings bug (I hope): see this post.

08/29/04: Shoutbox 1.04 is released, featuring a new installer system (using the Hack Installer System) and redone templates, as well as a few bug fixes. Enjoy.

Presenting: The Shoutbox Hack


Support posts made at GeekyDesigns.com have a higher priority than posts made in this thread, and is the prefered way of getting support.



There are way too many features to list, so I'll just let the screenshots do the talking.

Shoutbox credits

PHP Code:
Matthew Gordon
Templates:
Zachery Woods
- misc: Matthew Gordon
- Originally by TWTCommish, redone by Zachery for 1.04


If you feel your not able to install this yourself please feel free to drop me a pm and we can make arrangments

If you would like to donate to us please pm us and again we can make arragnments

Dont forget to click install!

Install Instructions:
Code:
NEW INSTALL/UPGRADE FROM 1.03 to Current
 
 1. Upload the contents of the 'upload' folder to your forums directory.
 2. Run http://www.yoursite.com/forums/install/hack_install.php
 3. Select "Shoutbox Hack" and then follow the instructions to install.
 4. Follow the directions in the readme files when it gets to that step, then finalize the install (by clicking the last link in the install).
 5. Enjoy your shoutbox!
Matrixgl did a template modification to make the shoutbit more like its vB2 counterpart and released it (tested on 1.03) here.

FOR THOSE WHO WANT SUPPORT, SPECIFY THIS INFORMATION OR BE IGNORED:

What is the exact error you recieve?
Where does the supposed error happen?
What vB version are you running?


Here are the old screenshots, new ones will be posted soon:
settings.gif (186.0 KB)
forumhome.gif (37.1 KB)
forumhome_iframe.gif (30.0 KB)
shoutbox_home.gif (96.1 KB)
shoutbox_home_guest.gif (84.8 KB)
user_settings.gif (85.5 KB)
usergroup_permissions.gif (67.8 KB)
shoutbox_home_textarea.gif (78.9 KB)





Enjoy.

Supporters / CoAuthors

Show Your Support

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

Comments
  #332  
Old 12-01-2004, 03:20 PM
blackpheonix blackpheonix is offline
 
Join Date: Nov 2004
Location: Great Yarmouth - UK
Posts: 167
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

FORUMHOME template weres templates just installed an im total noob to this im using vb3
Reply With Quote
  #333  
Old 12-01-2004, 03:27 PM
Jason McConnell Jason McConnell is offline
 
Join Date: Jun 2004
Location: Syracuse NY
Posts: 120
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hey guys, I've used this Shoutbox on a number of other sites, and wanted to use it on my own, but I'm getting a couple of Parse Errors. I did read most of the thread here, but I didn't see anything that related to the errors I'm getting.

Parse Error #1:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/unifiedx/public_html/forum/index.php on line 57
Code:
require_once('./global.php');
I don't see anything wrong with that line, after comparing it to the original file.

Parse Error #2
Parse error: parse error, unexpected T_ELSE in /home/unifiedx/public_html/forum/admincp/usergroup.php on line 141

This was the file edit:
Code:
// set default yes permissions (bitfields)
			$ug_bitfield = array(
				'showgroup' => 1,
				'canview' => 1,
				'canviewmembers' => 1,
				'canviewothers' => 1,
				'cagetattachment' => 1,
				'cansearch' => 1,
				'canmodifyprofile' => 1,
				'canthreadrate' => 1,
				'canpostattachment' => 1,
				'canpostpoll' => 1,
				'canvote' => 1,
				'canwhosonline' => 1,
				'allowhidden' => 1,
				'showeditedby' => 1,
				'canseeprofilepic' => 1,
				'canusesignature' => 1,
				'cannegativerep' => 1,
				'canuserep' => 1,
				'shoutpost' => 1,
				'shoutedit' => 1,
				'shoutdelete' => 1,
				'shouthdelete' => 0,
				'shouteditothers' => 0,
				'shoutdeleteothers' => 0,
				'shouthdeleteothers' => 0,
				'shoutip' => 0,
				'shoutcoventry' => 0,
			);
			// set default numeric permissions
			$usergroup = array(
				'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
				'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
				'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000,
				'shouthierarchy' => 5, 'shoutmaxdaily' =>0
			);
But this is what appears:

139 print_table_header($vbphrase['add_new_usergroup']);
140 {
141 else
142 $usergroupid = intval($_REQUEST['usergroupid']);

Same deal here with first error, after comparing it with the original file, those lines appear exactly as they should be. And no, I didn't use Dreamweaver for the file edits, I used UEdit. Gonna go back and try again with Notepad :ermm:

----------------------------------
*EDIT* I got the Usergroup.php problem taken care of, but still having the Parse Error in Index.php on line 57

Got the Index.php problem taken care, WITH Dreamweaver. I need a beer
Reply With Quote
  #334  
Old 12-01-2004, 08:01 PM
TruckMuddr TruckMuddr is offline
 
Join Date: Sep 2004
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I love the shoutbox, but I got one thing I'd like added, if possible.

I'd like it if there is a way to have it auto-prun after x amount of days.
Reply With Quote
  #335  
Old 12-02-2004, 12:10 AM
The Avatar The Avatar is offline
 
Join Date: Nov 2004
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack dudes!!

I loved your ushop & ucash hack, and I also love this one.

Once my board is up and running fully (and I start making some money), I will donate some cash your ways
Reply With Quote
  #336  
Old 12-05-2004, 05:34 AM
Vman Vman is offline
 
Join Date: Apr 2004
Posts: 167
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maybe I missed it, BUT is there a way to PRUNE the shouts?????

My hand is tired of hiting the "Delete" button on 10 plus pages!!!

If there is not, could you make a option for this????

Thanks
Reply With Quote
  #337  
Old 12-05-2004, 02:59 PM
sirstone sirstone is offline
 
Join Date: Dec 2004
Location: germany
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

how can i display the last 3 shouts in the forum home? I´ve installed the hack, and the shoutbox.php works fine, but there is nothing in the forumshome?
Reply With Quote
  #338  
Old 12-06-2004, 11:58 AM
Jason McConnell Jason McConnell is offline
 
Join Date: Jun 2004
Location: Syracuse NY
Posts: 120
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sirstone
Hi,

how can i display the last 3 shouts in the forum home? I?ve installed the hack, and the shoutbox.php works fine, but there is nothing in the forumshome?
You have to add the last file edit to the Forumhome template. At least I'm assuming so, your homepage link takes me right back to vb.org :ermm:


@ GeekyDesign guys...

Awesome hack It definitely helps keeps the posts in my forums on track, and all the non-consequential stuff stays neatly where it should Congratulations

If I may offer a suggestion for a future version though.. to have the shoutbox accessabile thru a popup shoutbox like on deviantArt.com.
Reply With Quote
  #339  
Old 12-09-2004, 06:22 AM
PennylessZ28 PennylessZ28 is offline
 
Join Date: Mar 2002
Location: North America
Posts: 737
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm uninstalling this hack, 2 weeks and no support? Is anyone getting any support? Doesn't seem like it.
Reply With Quote
  #340  
Old 12-10-2004, 07:36 PM
noppid noppid is offline
 
Join Date: Mar 2003
Location: Florida
Posts: 1,875
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We tried and and did not like the templates at all. The smiles mess up the layout and the java to TX the smile code the the input box don't work.
Reply With Quote
  #341  
Old 12-15-2004, 01:47 PM
Impulse Impulse is offline
 
Join Date: Feb 2004
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there anyway to auto prune the 'older' shouts?
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 02:29 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.04756 seconds
  • Memory Usage 2,320KB
  • 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
  • (3)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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