Inferno vBShout Pro v2.5

Hoxxy

New Member
[ITech] [AJAX] Inferno vBShout Lite
Created By Inferno Technologies (Inferno Technologies v2 - Home of RPG Inferno and Inferno Shoutbox)
Copyright 2004-2008
All rights reserved
Project Development Team: Zero Tolerance
Project Lead: Iain "Decado" Kidd
Support Forum: http://forums.infernotechnologies.ne...-Supp-f23.html
----------------------------------
Pro Version: Inferno Technologies v2 - Inferno vBShout Pro


Project Description

This is the latest version of Inferno vBShout LITE, the free version of our Inferno vBShout Pro product (see above link). Those who were running 1.0.1 Lite will find a lot of useful upgrades and additions, including aesthetic changes and many bug fixes and most importantly a huge decrease in server load and bandwidth consumption.

Support
This version is supported, exclusively at our support forums.

Features
AJAX Shoutbox
AJAX Shoutbox Active Users
Formatting Options Saved
Notice posted when user replies to a thread
Notice posted when user creates a new thread
Notices posted for most admin commands executed
/prune command (admin only)
/ban userid or username command (admin only)
/unban userid or username command (admin only)
/notice message (admin only) Assigns shoutbox notice
/removenotive (admin only) Removes any assgned shoutbox notice
On/off switch for the Shoutbox
Enhanced Page Deployment - Easily place the shoutbox ANYWHERE in your forum
Editor Colours/Fonts editable
Editor Position
Shoutbox frame height
Select which editor tools to display
Select which BBCodes are allowed within the shoutbox
Allow images in the shoutbox
Allow smilies in the shoutbox
Edit shoutbox notice (alternate to using command)
Edit shoutbox banned users (alternate to using command)
Idle Timeout (Seconds) - Set how many seconds before a user becomes idle in the shoutbox, this stops shoutbox updates
Select Usergroups who can use admin commands
Enter forum ID(s) which are exempt from new thread/reply shoutbox notices
Archive System (view all shouts, see shout statistics, view top shouters)
Shoutbox Lockdown Mode (Only 1 userid will be able to shout)
Shouts To Display (How many shouts you want to display)
Flood Control (Shouts cannot be posted after X seconds of shout)
Use Normal Font Size (instead of using small font)
Shout Listings Order (Show newest at top or bottom)
Smilies To Show (set how many smilies you want to show)
Maximum [SIZE] (Set the maximum size allowed for the [SIZE] tag)
Protected Usergroups (cannot be banned)
Disable Thread/Reply Notices
Thread/Reply Notice Exemptions (Enter forum IDs to be exempt)
AJAX Refresh Speed (Set how fast ajax will refresh)
Smilies Menu
Hide Shoutbox To UGs

Additional Features

Auto-Idle
The auto-idle system will drastically lower server load on sites with many users on at the same time. It allows you to automatically set the user to "idle" in the shoutbox, meaning the shoutbox will load shouts once, then idle the user until the click the unidle button or make a shout. Afterwards they will idle as normal (as set in the ACP).

Shoutbox Advanced Optimised Protocol
The Shoutbox AOP is a brand new feature that when turned on will dramatically cut server resources/bandwidth used by the shoutbox. Instead of the shoutbox refreshing every X seconds to check if there is new data, it will know when there is new data and only refresh then, meaning when there is no activity in the shoutbox, no resources will be consumed, or bandwidth.

Shoutbox Low Level Logging
The shoutbox low level logging system will provide you with a log of shout edits, deletes, bans, unbans, notices and remove notice commands. This will help you keep track of commands being used in the shoutbox. This can be turned off.

Private Message System
When clicking a username in the shoutbox, it will now open a new "tab" (This is a shoutbox tab, not a browser tab). In this tab you will be able to privately chat to the member where only they and you will see the messages. This helps split private chats and the main chat, and you can have as many private chats open as you like!

vBSEO Issues?
If you're encountering issues with vBSEO this is most likely due to the option within vBSEO to "clean html", you do not need to turn this option off, but you will need to change the plugin for vBShout. Go to the Plugin Manager within your ACP, and find the plugin: "Inferno Shoutbox: Deploy Shoutbox". Edit this plugin, and where you see the option "Execution Order", set this to 1 and save, you should no longer encounter issues.

Note
I'll update screenshots soon! 5am here right now...

Enjoy!

Zero Tolerance
Inferno Technologies Lead Developer
 

Unsure

New Member
That is the lite version. There is a difference... We need the pro for specific reasons. Anyone have it?
 

Hoxxy

New Member
Pro version was released Apr 3 2008, 09:37 PM, lite version is the best your gonna get for the time being! ;)
(please note the smilie)!
 

Unsure

New Member
I have a vbulletin license, I'm aware of the lite version. How long does it take to null these things?
 

mabv

New Member
LOL. The description is PRO but the file is LITE. Pls. dont mislead the users.
Hopefully someone could post the v2.5 PRO version.
It doesnt need to be nulled. RETAIL or NOT NULLED is welcome.
 

Hoxxy

New Member
mabv said:
LOL. The description is PRO but the file is LITE. Pls. dont mislead the users.
Hopefully someone could post the v2.5 PRO version.
It doesnt need to be nulled. RETAIL or NOT NULLED is welcome.

No look again the title says lite if you notice there is a link to pro version site and even the attachment reads lite ;)
 

Feckie

New Member
SpeedRazors said:
Board Message

would like to see this fix also

Where in the process of making the shoutbox work with vB 3.7, as far as we can see, only the settings issue exists right now, and that's easily fixed (find out how below). But if any of you are experiencing other problems, please let us know, also make sure you're running vB 3.7 RC1, we won't be making any fixes for the beta versions I'm afraid, and I can't promise the fix below will work on beta versions (but it may do).

In anycase, as we're also adding some new additions to the shoutbox, we thought we'd tell you all how to fix the issue with checkbox settings for the shoutbox instead of waiting for the release:

In your admin cp, go to the plugin manager, then edit the plugin 'Inferno Shoutbox: Admin Usergroup Commands Save'. Once here, you want to add the following code at the very bottom of all the existing code:
Code:
if ($settings[$oldsetting['varname']])
{
$settings[$oldsetting['varname']] = $vbulletin->GPC['setting'][$oldsetting['varname']];
}

Save the plugin, and the settings should then save correctly, if you're not too sure on adding the code below the rest, just replace the entire plugin code with:


Code:
if (in_array($oldsetting['varname'], array('ishout_admincommands', 'ishout_hideshoutbox', 'ishout_protectedugs', 'ishout_bannedgroups', 'ishout_archiveperm')))
{
$allowed = array();

if (is_array($vbulletin->GPC['setting'][$oldsetting['varname']]))
{
  foreach ($vbulletin->GPC['setting'][$oldsetting['varname']] as $ug => $isallowed)
  {
   if ($isallowed)
   {
    $allowed[] = $ug;
   }
  }
}

$vbulletin->GPC['setting'][$oldsetting['varname']] = implode(',', $allowed);
}

if (in_array($oldsetting['varname'], array('ishout_editor_tools', 'ishout_bbcodes')))
{
$value = 0;

if (is_array($vbulletin->GPC['setting'][$oldsetting['varname']]))
{
  foreach ($vbulletin->GPC['setting'][$oldsetting['varname']] as $thisvalue)
  {
   $value += $thisvalue;
  }
}

$vbulletin->GPC['setting'][$oldsetting['varname']] = $value;
}

if ($settings[$oldsetting['varname']])
{
$settings[$oldsetting['varname']] = $vbulletin->GPC['setting'][$oldsetting['varname']];
}
 

Spinifex

New Member
can anybody gimme some info as to why my shoutbox v2.0 just now says Loading.. and nothing else!? ive tried upgrading to 2.5 and its still the same. all files were replaced and ive also tried uninstalling it wtf still the same.

cant believe this is happening to me!!!!!!!
HELP LOL

is the sql fucked?

Spinifex.
 

Feckie

New Member
Spinifex said:
can anybody gimme some info as to why my shoutbox v2.0 just now says Loading.. and nothing else!? ive tried upgrading to 2.5 and its still the same. all files were replaced and ive also tried uninstalling it wtf still the same.

cant believe this is happening to me!!!!!!!
HELP LOL

is the sql fucked?

Spinifex.

Are you using 3.7 because 2.5 does not work on 3.6
 
Top