Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases

Reply
 
Thread Tools
vB Shoutbox 1.0 Details »»
vB Shoutbox 1.0
Version: 1.00, by TWTCommish TWTCommish is offline
Developer Last Online: Dec 2022 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 05-15-2002 Last Update: Never Installs: 263
 
No support by the author.

Well, people wanted it, so here it is: a vB-integrated Shoutbox. It's a little different than the one they used to have on this site, however. The moderation functions are VERY basic...but they'll be improved for 2.0, most likely, if there's any interest.

A short breakdown:
  • It's a chatroom-esque page that everyone can use.
  • Shouts that day, shouts in last 24 hours, shouts by YOU, and total shouts, are all tracked.
  • Leaderboard (top shouters) is tracked.
  • Clickable smilies automatically added below the add shout box.
  • "delete" link shown on all shouts if you're an admin or a moderator (usergroupids 5, 6, and 7 by default).
  • bbCode parsing included.
Attached is an archive containing all the files you'll need for the basic installation, AND for the optional features. NOTE: the vBHacker compatible file included within does NOT constitute a full installation. You'll still need to upload the shoutbox.php file to your main forums directory.

Enjoy. Here's a live demo: http://www.movieforums.net/shoutbox.php

Show Your Support

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

Comments
  #402  
Old 06-16-2003, 11:50 PM
hexonxonx hexonxonx is offline
 
Join Date: May 2003
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I went back a few pages and didn't see this asked yet. I am wondering if anyone knows the modifications needed to get this running on vB 3.0?

If not, does anyone have plans to do so soon?
Reply With Quote
  #403  
Old 06-18-2003, 11:58 AM
-Sidekick- -Sidekick- is offline
 
Join Date: May 2002
Location: Cudahy, Wi
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Someone on at vb.com was talking about almost having this done.
Reply With Quote
  #404  
Old 06-18-2003, 05:48 PM
hexonxonx hexonxonx is offline
 
Join Date: May 2003
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 01:58 PM -Sidekick- said this in Post #402
Someone on at vb.com was talking about almost having this done.
Yeah I saw that same post over there.
Reply With Quote
  #405  
Old 06-22-2003, 07:20 PM
fury's Avatar
fury fury is offline
 
Join Date: Oct 2001
Location: Indiana
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That would be me Unfortunately, vB.org does not allow the release of vB3 hacks. Stay tuned for more info, I am in the process of asking TWT for permission to rerelease the hack. I would guess that the hack itself is about 90% complete now.
Reply With Quote
  #406  
Old 06-22-2003, 07:22 PM
gmarik's Avatar
gmarik gmarik is offline
 
Join Date: May 2002
Location: Mocsow
Posts: 1,288
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The last shout in the place of Announcement
Reply With Quote
  #407  
Old 06-24-2003, 02:26 AM
monstergamer's Avatar
monstergamer monstergamer is offline
 
Join Date: Feb 2003
Location: around the corner
Posts: 433
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is there any way to ban and unban some one from the shoutbox.
but not ban the them from the forum
Reply With Quote
  #408  
Old 06-24-2003, 04:29 AM
-Sidekick- -Sidekick- is offline
 
Join Date: May 2002
Location: Cudahy, Wi
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yea monster, I added it to my board. I'll post it up in a sec.
Reply With Quote
  #409  
Old 06-24-2003, 04:49 AM
-Sidekick- -Sidekick- is offline
 
Join Date: May 2002
Location: Cudahy, Wi
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Open Shoutbox.php

Find this:

PHP Code:
$templatesused 'shoutbox,shoutboxbit,shoutbox_adminoptions,shoutbox_error,shoutbox_leaderbit,shoutbox_leaders,shoutbox_notloggedin,shoutbox_pagenav,shoutbox_postshout'
Replace that with this:

PHP Code:
$templatesused 'shoutbox,shoutboxbit,shoutbox_adminoptions,shoutbox_error,shoutbox_leaderbit,shoutbox_leaders,shoutbox_notloggedin,shoutbox_banned,shoutbox_pagenav,shoutbox_postshout'

Then find this:

PHP Code:
eval("\$shoutbox_postshout = \"".gettemplate("shoutbox_notloggedin",1,0)."\";");

Below that, add this:

PHP Code:
// ###################### START OF BANNING OPTION ##########################

if ($bbuserinfo[userid] == X) {
    eval(
"\$shoutbox_postshout = \"".gettemplate("shoutbox_banned",1,0)."\";");
  }

// ###################### END OF BANNING OPTION ########################## 
Replace X in that code with the User ID of the person you are banning.

Then create a template named shoutbox_banned

Put this in that template:

PHP Code:
<br/><center><normalfont color="white"><b>You have been banned from the shoutbox and no longer have the ability to shout.</b></normalfont></center><br/> 
Upload your shoutbox.php and that should be it.

Don't forget to change the font color from white in the added template to whatever color that matches your style. That's the color the text will be from the ban message.

If you do that correctly, when someone that is banned goes to the shoutbox it will look like the attached screenshot. Sorry it's not a function that you can do from your AdminCP, I'm not that good. :ermm:
Reply With Quote
  #410  
Old 06-24-2003, 05:09 AM
monstergamer's Avatar
monstergamer monstergamer is offline
 
Join Date: Feb 2003
Location: around the corner
Posts: 433
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanx
trying it now
Reply With Quote
  #411  
Old 06-24-2003, 11:00 AM
gmarik's Avatar
gmarik gmarik is offline
 
Join Date: May 2002
Location: Mocsow
Posts: 1,288
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I created a folder "/chat" wich is on the same level as the folder "/forum". All is working well only one thing - smilies never show up, because the path to them has changed. Is there a way to add $bburl to every smilie path or a better method to solve this problem?
Reply With Quote
Reply

Thread Tools

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:12 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.14603 seconds
  • Memory Usage 2,315KB
  • Queries Executed 27 (?)
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
  • (5)bbcode_php
  • (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
  • (2)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_postinfo_query
  • fetch_postinfo
  • 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