vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Add-On Releases - [ITech] [AJAX] Inferno vBShout Lite 2.5.0 (https://vborg.vbsupport.ru/showthread.php?t=147346)

torrentrockerz 05-02-2009 05:27 PM

I want to change my Background color of my Messages Box(Shout Box). How can I do that?

Adv. Thanks

Nazim 05-06-2009 06:02 PM

Hey, Having a little trouble adding the shoutbox to every page in the forum, well alot of trouble, and as the installation.txt says,

Quote:

if you are having trouble deploying the shoutbox in specific parts of your forum please ask for assistance.
I may just be doing this wrong, heres how I thought it would work, If i wanted to add my shoutbox into my Arcade, i goto the styles and templates, find the ARCADE template and add the <!--{%SHOUTBOX%}-->, Then goto the Shoutbox settings and add arcade after index... (index,arcade).

This didn't work, so what am I doing wrong, hope you can help, Thanks,

Nazim 05-08-2009 10:16 AM

bump

algert 05-12-2009 01:21 PM

Does anyone know a way to get the Shoutbox renamed to Chatbox and instead of having the Shoutbox word centered align get it to left aligned?

TheLastSuperman 05-12-2009 02:05 PM

1 Attachment(s)
I just edited this and installed on a 3.8 board, I changed the name to "The Chit-Chat Lounge" and did a few other edits...

I'm @ work now but if I remember correctly you can edit all this via the included files OR if not then edit the xml. If your still having problems PM me as after work my brain forgets things that happened @ work, that's how I cope w/ having a crummy job lol.

S-MAN

Edit: Hmmm, I bet you can change the BG color... That gave me the idea to make it an image instead! I bet we can do this via css somehow by incorporating it in the mod.

algert 05-12-2009 02:11 PM

Quote:

Originally Posted by TheLastSuperman (Post 1809371)
I just edited this and installed on a 3.8 board, I changed the name to "The Chit-Chat Lounge" and did a few other edits...

I'm @ work now but if I remember correctly you can edit all this via the included files OR if not then edit the xml. If your still having problems PM me as after work my brain forgets things that happened @ work, that's how I cope w/ having a crummy job lol.

S-MAN

Edit: Hmmm, I bet you can change the BG color... That gave me the idea to make it an image instead! I bet we can do this via css somehow by incorporating it in the mod.

let me know what you've edit to change it to The Chit-Chat lounge? and is it possible to get it left aligned?

BHATUGAN 05-12-2009 02:22 PM

can i prevent other users to use the "/me" command?

TheLastSuperman 05-12-2009 02:28 PM

Quote:

Originally Posted by algert (Post 1809378)
let me know what you've edit to change it to The Chit-Chat lounge? and is it possible to get it left aligned?

I'll check into it later but if you don't hear anything send me a PM later today as I'm at work :p

It should be, I would assume just using html tags for left alignment would work but afterwards compare it in IE & Firefox.

The /me command... that's a good question... stumped :p

algert 05-12-2009 02:39 PM

Quote:

Originally Posted by BHATUGAN (Post 1809386)
can i prevent other users to use the "/me" command?

I checked there isn't a way, but I remember I saw this option somewhere..

TheLastSuperman 05-12-2009 11:23 PM

Quote:

Originally Posted by algert (Post 1809378)
let me know what you've edit to change it to The Chit-Chat lounge? and is it possible to get it left aligned?

Quote:

Originally Posted by algert
Hey, can u tell me which file to edit and how to make it Left aligned on the Inferno shoutbox. :)

Thanks!

To change the name find:

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
        </td>
</tr>
</thead>

& Change this part..
Code:

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
To what you want

i.e. change Shoutbox to whatever you want like...

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">The Chit-Chat Lounge</a>
        </td>
</tr>
</thead>

And to left align simply change this...

Code:

        <td class="tcat" align="center">
To this...

Code:

        <td class="tcat" align="left">
Enjoy :D

algert 05-13-2009 04:31 PM

Quote:

Originally Posted by TheLastSuperman (Post 1809737)
To change the name find:

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
        </td>
</tr>
</thead>

& Change this part..
Code:

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
To what you want

i.e. change Shoutbox to whatever you want like...

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">The Chit-Chat Lounge</a>
        </td>
</tr>
</thead>

And to left align simply change this...

Code:

        <td class="tcat" align="center">
To this...

Code:

        <td class="tcat" align="left">
Enjoy :D

Thank you! Your awesome! Thanks!

TheLastSuperman 05-13-2009 07:45 PM

Quote:

Originally Posted by algert (Post 1810157)
Thank you! Your awesome! Thanks!

lol... nope, just THE LAST SUPERMAN :D
Your welcome ;)

torrentrockerz 05-21-2009 02:27 PM

Hi TheLastSuperman, please reply to my message

I want to change my Background color of my Messages Box(Shout Box). How can I do that?

Adv. Thanks

wtf is life 05-24-2009 08:57 AM

Anyone got a release to work on V. 3.8.2

algert 05-24-2009 09:59 AM

Quote:

Originally Posted by wtf is life (Post 1816178)
Anyone got a release to work on V. 3.8.2

This version works with 3.82.. I've tested it. :D

Stranger. 05-24-2009 11:02 PM

keeps saying
Loading....

any help?

tiengnhat 05-28-2009 03:25 AM

Help me for error of database.

Code:

Database error in vBulletin :

mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
/home/yourforum/public_html/forum/includes/class_core.php on line 311

MySQL Error  :
Error Number  :
Request Date  : Wednesday, May 27th 2009 @ 07:43:07 PM
Error Date    : Wednesday, May 27th 2009 @ 07:43:07 PM
Script        : http://www.yourforum.com/forum/infernoshout.php
Referrer      : http://www.yourforum.com/forum/
IP Address    : 210.196.150.xxx
Username      :
Classname    : vB_Database
MySQL Version :

Thanks you!

SatSeeker 05-28-2009 10:56 PM

Hello guys,

Does anyone know how to increase the "Shouts To Display" option? It seems like always defaulted at 20 even if I tried to increase it 40 or any other numbers?

Greatly appreciated!

SatSeeker 05-29-2009 08:55 PM

Hi Guys,

I've finally got it fixed!

Just for anyone who has the same problem as I have, here how to fix the 20 post message limitation:

1. open the file named "infernoshout.php" under UPLOAD folder using Notepad editor
2. go down to where it says

Code:

# ------------------------------------------------------- #
# Display the messages
# ------------------------------------------------------- #

if ((empty($_REQUEST['do']) || $_REQUEST['do'] == 'messages'))
{
        $charset = $vbulletin->userinfo['lang_charset'];
        $charset = strtolower($charset) == 'iso-8859-1' ? 'windows-1252' : $charset;
        @header('Content-Type: text/html; charset=' . $charset);

        $infernoshout->load_engine('shout');

        $shout =& new shout;

        echo $infernoshout->fetch_shouts($shout, 20);

3. Change
Code:

        echo $infernoshout->fetch_shouts($shout, 20);
To whatever long you want as
Code:

        echo $infernoshout->fetch_shouts($shout, 100);
4. Save, Upload to your forum root, and overwrite the old one

That's all!

oliver123 05-31-2009 10:41 AM

Wow looking nice!
Thanks :)

Sam Wiltshire 06-22-2009 03:26 PM

How do i put the shouout on a portal page instead of my forum index ?

i know this is wierd but i have to do it lol

Sam Wiltshire 06-22-2009 03:28 PM

Quote:

Originally Posted by tiengnhat (Post 1818516)
Help me for error of database.

Code:

Database error in vBulletin :

mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
/home/yourforum/public_html/forum/includes/class_core.php on line 311

MySQL Error  :
Error Number  :
Request Date  : Wednesday, May 27th 2009 @ 07:43:07 PM
Error Date    : Wednesday, May 27th 2009 @ 07:43:07 PM
Script        : http://www.yourforum.com/forum/infernoshout.php
Referrer      : http://www.yourforum.com/forum/
IP Address    : 210.196.150.xxx
Username      :
Classname    : vB_Database
MySQL Version :

Thanks you!

im right in guessing you have changed the urls ?

from www.yourforums.com to yours ?

Gursimran 06-23-2009 04:53 PM

how to obtain pro version?

TheLastSuperman 06-23-2009 05:04 PM

Quote:

Originally Posted by Gursimran (Post 1835738)
how to obtain pro version?

Not available, Inferno Technologies is not longer active. You can however modify this mod and change some stuff to get it close to being pro and also code in your own features ;).

S-MAN

s-p0k 07-24-2009 07:13 PM

Quote:

Originally Posted by TheLastSuperman (Post 1809737)
To change the name find:

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
        </td>
</tr>
</thead>

& Change this part..
Code:

<a href="infernoshout.php?$session[sessionurl]do=archive">Shoutbox</a>
To what you want

i.e. change Shoutbox to whatever you want like...

Code:

<thead>
<tr>
        <td class="tcat" align="center">
                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_infernoshout')"><img id="collapseimg_forumhome_infernoshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_infernoshout].gif" alt="" border="0" /></a>

<a href="infernoshout.php?$session[sessionurl]do=archive">The Chit-Chat Lounge</a>
        </td>
</tr>
</thead>

And to left align simply change this...

Code:

        <td class="tcat" align="center">
To this...

Code:

        <td class="tcat" align="left">
Enjoy :D

wat file to go in to to rename it help plzzz:confused:

TheLastSuperman 07-24-2009 08:05 PM

Quote:

Originally Posted by s-p0k (Post 1854804)
wat file to go in to to rename it help plzzz:confused:

The actual product xml file, open it w/ notepad++ or similar and edit then upload to test, make a copy so you don't have to download again ;).

s-p0k 07-25-2009 03:14 AM

Quote:

Originally Posted by TheLastSuperman (Post 1854839)
The actual product xml file, open it w/ notepad++ or similar and edit then upload to test, make a copy so you don't have to download again ;).

ty ...but where in the code i rename it?...
still new to all this..

s-p0k 07-29-2009 08:12 PM

Quote:

Originally Posted by s-p0k (Post 1854982)
ty ...but where in the code i rename it?...
still new to all this..

and also how do i make the reply or the new post in the chat ..so u can just hit the link in the chat box and go right to the post????????????

done this one

cclaerhout 08-02-2009 02:53 PM

=>Bought the fist pro version of this product about 2 years ago.
=>Haven't touched vB about the time
=>when i come back : product dead (ok, it could happen) & product no longer available for download (gloups) & pro support disappeared (a shame)
=>Great, thank you, will force me to have a look on RS
:mad:

kylek 08-09-2009 03:07 AM

Deleted post - made by mistake.

piraterevival 09-21-2009 10:10 AM

Any idea how I can ge this to display on cmps_index.php on vBadvanced CMPS?

All help appreciated

Cheers

Wynand 10-10-2009 07:12 PM

Righto, the almost famous "Shoutbox Notice: Your shout failed to send" error. Many hits on google, no solutions found. Does anyone have the answer to the error above? Or, an alternative that is still supported?

J.G. 11-19-2009 02:59 PM

Hi,

I downloaded this, and imported it but i'm stuck at entering this:
Code:

<!--{%SHOUTBOX%}-->
It says to edit the template "forumhome", but i cant find it ? What file is it?
Instead I edited index.php file in root of forum, and then i found "$navbar" at the end of the file. It also says to add it under $navbar, but it doesn't say where to put it EXACTLY. I tried adding it everywhere, right after navbar, one line under navbar, but it never works.
I'm a bit new to the vbulletin so could someone please explain how to get this working?
This is screenshot of index.php where i found $navbar:

http://www.imagesforme.com/thumb/thumb_af1f0c2b.jpg

so where exactly should i put that code ?

Thanx :/

EDIT:
found it

Charlie98902 11-22-2009 07:03 PM

The author no longer does this? I clicked the links to get the pro but the site is no longer there.

Charlie98902 11-22-2009 11:21 PM

Okay I tried this if conditional here and O get error line 21 but I have this in vb4 beta 4. Any ideas?

bartek24m 11-25-2009 07:44 AM

how tochange the format or disable date in shouts ?

Allan 12-18-2009 08:41 PM

Upgrade to vB4 ?

TheLastSuperman 12-18-2009 10:53 PM

Quote:

Originally Posted by Allan (Post 1933097)
Upgrade to vB4 ?

Allan,

I was unsure if you knew the history behind Inferno Tech so basically I wanted to let you know... no one has heard from Inferno Tech aka Zero Tolerance in a while see the Inferno Tech's last login...

Quote:

by Inferno Tech (Coder) Inferno Tech is offline
Developer Last Online: Sep 2008
And without permissions to re-distribute it's not likely unless you code up your own similar version ;).

Mike

Ranger187 12-18-2009 11:51 PM

I have the VB4 version.....

Quote:

This is the Inferno vBShout Pro v2.5.2 for vB4.0, however, this is just a shortened version, commands etc remains same as vb38x

Install the mod as normal.


Go to the template: FORUMHOME (or were ever you want it to display)
Then Find: $navbar
Add this underneath the code:
PHP Code:
<!--SHOUTBOX-->



And your welcome. ;)

Allan 12-19-2009 06:38 AM

Quote:

Originally Posted by TheLastSuperman (Post 1933170)
Allan,

I was unsure if you knew the history behind Inferno Tech so basically I wanted to let you know... no one has heard from Inferno Tech aka Zero Tolerance in a while see the Inferno Tech's last login...



And without permissions to re-distribute it's not likely unless you code up your own similar version ;).

Mike

Hey Mike :)

I noticed his absence, but I thought if someone had adapted, he could put in the thread, which itself is subject to verification of the license if the author returned and that the adapted version does not like, it will simply be removed.
Quote:

Originally Posted by Ranger187 (Post 1933210)
I have the VB4 version.....

And your welcome. ;)

Thank you :), Do you have apply this modification ?

http://www.vbulletin.com/forum/showt...=1#post1873269


All times are GMT. The time now is 06:43 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.02624 seconds
  • Memory Usage 1,857KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (21)bbcode_code_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete