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

Reply
 
Thread Tools
vBulletin 3.x Shoutbox 1.0 (AJAX) Details »»
vBulletin 3.x Shoutbox 1.0 (AJAX)
Version: 1.00, by DionDev DionDev is offline
Developer Last Online: Aug 2012 Show Printable Version Email this Page

Category: Chat Modifications - Version: 3.7.1 Rating:
Released: 06-18-2008 Last Update: 06-18-2008 Installs: 87
DB Changes Template Edits
Re-useable Code Additional Files Translations  
No support by the author.

vBulletin 3.x Shoutbox 1.0 is a simple PHP and AJAX shoutbox script that is fully integrated with the vBulletin forum system. Once you have installed it you can place it in any of your vBulletin forum templates.

Features:

* Tested to work with vBulletin 3.x.
* It uses AJAX. This means that every time a new shout is posted by someone it will instantly display in the shoutbox without the page having to be refreshed.
* It is fully customizable. You can allow guests to post, select the number of shouts to display, and even change the name of the shoutbox.
* Only takes about 2 minutes to install. With very simple instructions in a small text file, you will have a unique shoutbox on your forum up and running in no time.
* It automatically inherits the style of the forum. If your forum has multiple style options, it uses the style the user has selected.

Demo: http://www.diondev.com/forums/

Support: http://www.diondev.com/forums/f7/

Show Your Support

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

Comments
  #42  
Old 06-24-2008, 04:23 AM
wickedstangs wickedstangs is offline
 
Join Date: Mar 2007
Location: San Diego
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how do you post links?
Reply With Quote
  #43  
Old 06-24-2008, 10:03 AM
rapidphim rapidphim is offline
 
Join Date: Feb 2007
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

do you plan to release fluid and fixed version for your style or just the fixed one? Do you have any demo/screenshot for white skin that can be used for working folks?
Reply With Quote
  #44  
Old 06-24-2008, 01:08 PM
bvbuk bvbuk is offline
 
Join Date: Mar 2008
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is there anyway i can make URLS clickable and open in a new tab/window?

cant seem to copy and paste them either.
Reply With Quote
  #45  
Old 06-26-2008, 12:26 PM
silens12 silens12 is offline
 
Join Date: Jun 2008
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how can i add this into vbadvanded cmps as a module? if you dont mind, i cant figure it out
Reply With Quote
  #46  
Old 06-27-2008, 07:30 AM
onliner7 onliner7 is offline
 
Join Date: May 2006
Location: greece
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by silens12 View Post
how can i add this into vbadvanded cmps as a module? if you dont mind, i cant figure it out
yes im interested too!
Reply With Quote
  #47  
Old 07-14-2008, 10:56 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[quote=DionDev;1554410]open up shoutbox.php

replace this:

Code:
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="1%" valign="top" style="padding-right: 15px;">

  <table cellpadding="5" cellspacing="1" border="0" width="175" class="tborder">
  <tr>
  <td width="100%" align="center" class="thead">

    <?php echo $shoutboxname; ?>

  </td>
  </tr>
  <tr>
  <td width="100%" align="center" class="alt2" style="padding: 10px 5px 10px 5px;">
  
    <font class="smallfont">

    <?php
    
    if ($vbulletin->userinfo['userid'] == 0 && $guestshouts == false)
    {
      echo "You must be logged in to send shouts.";
    }
    else
    {
    ?>
      <form name="shoutform" method="POST" onsubmit="saveData(); return false;" style="margin: 0px;">
      <input type="text" name="message" maxlength="500" onFocus="if(this.value=='type message here') this.value='';" onblur="if(this.value=='') this.value='type message here';" value="type message here" style="width: 155px; margin-bottom: 10px;" class="bginput" /><br />
      <input type="submit" name="submit" value="Submit Shout" class="button" />
      </form>
    <?php
    }
    ?>
    
    </font>

  </td>
  </tr>
  </table>

</td>
<td width="99%" valign="top">

  <div id="shoutarea"></div>

</td>
</tr>
</table>
with this:

Code:
<table cellpadding="5" cellspacing="1" border="0" width="100%" class="tborder" style="margin-bottom: 5px;">
<tr>
<td width="100%" align="center" class="thead">

  <?php echo $shoutboxname; ?>

</td>
</tr>
<tr>
<td width="100%" align="center" class="alt2">

  <font class="smallfont">

  <?php
  
  if ($vbulletin->userinfo['userid'] == 0 && $guestshouts == false)
  {
    echo "You must be logged in to send shouts.";
  }
  else
  {
  ?>
    <form name="shoutform" method="POST" onsubmit="saveData(); return false;" style="margin: 0px;">
    
    <table cellpadding="0" cellspacing="0" border="0" width="100%">
    <tr>
    <td width="99%" style="padding-right: 5px;">
    
      <input type="text" name="message" maxlength="500" onFocus="if(this.value=='type message here') this.value='';" onblur="if(this.value=='') this.value='type message here';" value="type message here" class="bginput" style="width: 100%;" /> 
    
    </td>
    <td width="1%">
    
      <input type="submit" name="submit" value="Submit Shout" class="button" />
      
    </td>
    </tr>
    </table>
    
    </form>
  <?php
  }
  ?>
  
  </font>

</td>
</tr>
</table>

<div id="shoutarea"></div>
let me know how that works out for you.


I'm having trouble with your shoutbo

No colors, form above text and still scrolls. Font has no proper style type inherited from forum, pretty much like the lack of colors.

I'm using a custom template found at /images/stylename so its not in the /root folder of the forum as some styles are installed.
Reply With Quote
  #48  
Old 07-15-2008, 06:17 PM
dantruongx dantruongx is offline
 
Join Date: May 2005
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank's i can see good.
Reply With Quote
  #49  
Old 07-15-2008, 11:17 PM
lostguy lostguy is offline
 
Join Date: Mar 2008
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

maybe next version allow add Smilies and choose color text and size .
Reply With Quote
  #50  
Old 07-18-2008, 02:42 PM
boandmichele boandmichele is offline
 
Join Date: Jan 2008
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you type an ampersand, it cuts off any text after that symbol. so if you type "hello & goodbye",

the only thing that will display is "hello"
Reply With Quote
  #51  
Old 07-19-2008, 05:58 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone else having this problem or is it just me?
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 10:35 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.07438 seconds
  • Memory Usage 2,310KB
  • 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
  • (2)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
  • (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