vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   [AJAX] vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097)

Allan 10-04-2005 07:51 PM

no update for vB 3.5 ?

mtha 10-04-2005 09:16 PM

ZT,

:) The shoutbox is great, but I want to make it a seperate page rather than using forums for it :) (Hope you dont mind me posting here)

so, I just take the action part and put it into vbshout.php?do=chat

Standalone chat: (just add before

// ---------------------------------------------------
// Start Page Output
// ---------------------------------------------------


PHP Code:

// ---------------------------------------------------
// AJAX Standalone Chat
// ---------------------------------------------------

if ($_GET['do'] == 'chat')
{
    
$navbits     = array("vbshout.php?" $vbulletin->session->vars['sessionurl'] . "do=chat" => 'Chat');
    
$navbits[""] = 'Shoutbox - Chat Area';

$Used    0;
$UsedArr = array();
$smilies $db->query_read("
        SELECT smilieid, smilietext, smiliepath, smilie.title,
        imagecategory.title AS category
        FROM " 
TABLE_PREFIX "smilie AS smilie
        LEFT JOIN " 
TABLE_PREFIX "imagecategory AS imagecategory USING(imagecategoryid)
        ORDER BY imagecategory.displayorder, smilie.displayorder
    "
);
$Smilie_Build  '';
$Total_Smilies $db->num_rows($smilies);

if (
$Total_Smilies 0)
{
    while (
$emo $db->fetch_array($smilies))
    {
        if (
$vbulletin->options['shout_smilies_show'] > 0)
        {
            
$Smilie_Cache[] = $emo;
        }
        else
        {
            
$Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')">[img]https://vborg.vbsupport.ru/[/img] ';
        }
    }

    if (
$vbulletin->options['shout_smilies_show'] > $Total_Smilies)
    {
        
$vbulletin->options['shout_smilies_show'] = $Total_Smilies;
    }

    if (
$vbulletin->options['shout_smilies_show'] > 0)
    {
        while (
$Used $vbulletin->options['shout_smilies_show'])
        {
            
$GetEmo $Total_Smilies;
            
$GetEmo rand(0$GetEmo);

            if (!
in_array($GetEmo$UsedArr) && $Smilie_Cache[$GetEmo])
            {
                
$Used++;
                
$GetEmo $Smilie_Cache[$GetEmo];
                
$Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')">[img]https://vborg.vbsupport.ru/[/img] ';
            }
        }
    }
}
else
{
    
$Smilie_Build 'No Emoticons Available';
}

$Options_DropDown         = array(); // Items included will be parsed to create drop down menus
$DropDowns                = array(); // Completed constructed drop down menus

$Options_DropDown['font_selector']    = array('Default''Arial''Arial Black''Arial Narrow''Book Antiqua''Century Gothic''Comic Sans MS''Courier New''Fixedsys''Franklin Gothic Medium''Garamond''Georgia''Impact''Lucida Console''Lucida Sans Unicode''Microsoft Sans Serif''Palatino Linotype''System''Tahoma''Times New Roman''Trebuchet MS''Verdana');
$Options_DropDown['color_selector']   = array();
$Options_DropDown['color_selector'][] = 'Default';

$hex   = array();
$hex[] = '0';
$hex[] = '3';
$hex[] = '6';
$hex[] = '9';
$hex[] = 'C';
$hex[] = 'F';

for (
$a 0$a 6$a++)
{
    for (
$b 0$b 6$b++)
    {
        for (
$c 0$c 6$c++)
        {
            
$Options_DropDown['color_selector'][] = '#' $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
        }
    }
}

if (
is_array($Options_DropDown))
{
    foreach (
$Options_DropDown as $Menu => $Options)
    {
        
$DropDowns[$Menu] = '';
        if (
is_array($Options))
        {
            foreach (
$Options as $Selection)
            {
                if (
preg_match("#^\#([a-z0-9]+)$#i"$Selection))
                {
                    
$Extra ' style="color:'.$Selection.';"';
                }
                else
                {
                    
$Extra '';
                }

                if (
$Selection == 'Default')
                {
                    
$Text = (($Menu == 'color_selector') ? 'Color' 'Font Face') . ' [Default]';
                }
                else
                {
                    
$Text $Selection;
                }

                
$DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'' "\n";
            }
        }
    }
}

if (
$vbulletin->options['shout_banned_perms'] == && isBanned($vbulletin->userinfo))
{
    
print_no_permission();
}
else
{
    eval(
'$Shoutbox = "' fetch_template('forumhome_vbshout') . '";');
}

    
$pagenav construct_page_nav($page$perpage$TS_D'vbshout.php?' $vbulletin->session->vars['sessionurl'] . 'do=chat'''
        
. (!empty($vbulletin->GPC['perpage']) ? "&pp=$perpage"")
    );
    
$HTML $Shoutbox;
}
// ---------------------------------------------------
// AJAX Standalone Chat
// --------------------------------------------------- 


You may also want to add

'chat' => array('GENERIC_SHELL',
'forumhome_vbshout',
),

to the action templates if you use it

edeab220 10-04-2005 10:32 PM

Quote:

Originally Posted by mikexxx
I had the same problem. Go to shout.php en you see what your problem is.

What am I supposed to be looking for? A few of my members are getting the "Loading..." error and I can't figure out what's wrong lol.

imported_-Sidekick- 10-04-2005 10:51 PM

Quote:

Originally Posted by TCM
It's working fine for me, but I thought I'd note the following (I assume it's the same in all versions):

If you send a message before it's finished loading, you're unable to send any more messages, and things screw up. It should be disabled until it's ready.

Thank you for the info. I'll just wait for the next version then.

Brandon Sheley 10-05-2005 05:42 AM

i have a small problem,, well actually 2, but the new one is this

www.locoforum.com i removed the code in forumhome_vbshout that took off the time,

i got the code form this thread,, if you don't know what i'm talking abotu i can get the post..

anyways if you look at my site, there is a space in between the users name and the shout..
how can i fix this ?

and my 2nd problem has been addressedwith no answer from my searching,
but how can we fix the who's online bug ?
it always says users are on the shoutbox.. and now it really does that i added vbshout to the portal page..

thx for the mod, and hopefully thx for some answers :)

-LM


*edit* i see a user with a longer name then mine posted on the shoutbox..
his post has now space..
would this cause all the rest of the post to be pushed out ?

Billspaintball 10-05-2005 01:07 PM

It took me forever to workout how to access the shoutbox archive and stats section.
For a while I was under the assumption that feature did not exist.

The link to it looks just like a plain heading, how about making a more obvious link?

JJR512 10-05-2005 02:21 PM

A member of my forums has pointed out that this hack does not work with the Ignore feature. That is, he is ignoring a member, and can't see any of his posts, but he can see his shouts.

I mention this for informational purposes. I've come to realize that none of us should expect to get any more help with this hack from its author. As far as I can tell, Zero Tolerance hasn't posted in this thread since August 27, and the "support" checkbox is not ticked. I guess we can help each other, but it'd be nice to get help from the guy who should know this hack better than anyone else.

Brandon Sheley 10-05-2005 06:04 PM

it doesn't matter to me who helps.. lol
maybe a member has figured out the problems and can share the answer ;)

paulomt1 10-05-2005 06:27 PM

Can anyone post here all the commands available, please?
I can't edit shouts.

mikexxx 10-05-2005 07:01 PM

Emoticons not showing up in the shoutbox ?

Gizmo5h1t3 10-05-2005 07:03 PM

Quote:

Originally Posted by mikexxx
Emoticons not showing up in the shoutbox ?

i get red "x" boxes in mine m8....lol

KidneyBoy 10-06-2005 12:03 AM

Quote:

Originally Posted by JJR512
A member of my forums has pointed out that this hack does not work with the Ignore feature. That is, he is ignoring a member, and can't see any of his posts, but he can see his shouts.

I mention this for informational purposes. I've come to realize that none of us should expect to get any more help with this hack from its author. As far as I can tell, Zero Tolerance hasn't posted in this thread since August 27, and the "support" checkbox is not ticked. I guess we can help each other, but it'd be nice to get help from the guy who should know this hack better than anyone else.

I know sometimes coders pick up abandoned projects. Would it be possible for somebody to do this (and would you please :) ). On top of the issue above, I'd really like to see a feature that would allow you to see "select" smiles, or maybe an option to show "all" or something like that. I also notice that the "random" option will quite often show the same smile 2 or 3 times sometimes.

It's an excellent shoutbox, and I'm happy with what I/we have, but those fixes/options would make it just that much more sweeter.

Take it easy
KidneyBoy

JJR512 10-06-2005 12:12 AM

I don't think I'm capable of taking over this hack. I wrote some pretty big hacks for vBulletin 2.0, like the original Weather hack and one of the early XML-news-parsing hacks, and some other smaller stuff. But I got out of it for a while, and I've only just recently gotten back into things. I'm starting off small and learning the new stuff and re-learning the old stuff. I don't know anything about how AJAX works, and that's a major part of this hack. I don't have any idea how to fix the major issue I'm complaining about, which is the inaccurate Who's Online. The smilies issue is probably pretty easy. But I'd feel more comfortable getting permission from Zero Tolerance first. Maybe I'll PM him and see if he has any intention of supporting this hack, what he thinks about someone else taking over, or maybe he's working on a new version of something. We'll see...

KidneyBoy 10-06-2005 01:28 AM

I know he released revised versions of a couple of his MODs today (Don't remember which, but I just remember his name). Anyway hopefully he'll update this puppy as well. In any case, I sure hope one way or another, this mod goes on, and at least somebody can support it/release bug fixes.

Like I said, even if it didn't get fixed, it's still excellent!

And JJR512: I wasn't meaning you specifically. Just any coder that is familiar with this stuff, and would be willing to at least attempt to get permission from ZT. Hopefully ZT will come back and there's no need for somebody to take over and get permission :)

Take it easy
KidneyBoy

Jenta 10-06-2005 03:36 AM

works fine for me and im sure most on 3.5.0
dont really see a need for this hack to be updated any longer

Wachtmeister 10-06-2005 08:21 AM

I have a problem seeing all users into the shoutbox on WOL status. I've posted this into the "Shoutbox on all pages" Thread, but i think the problem could be into the main shoutbox ;)

Please read https://vborg.vbsupport.ru/showpost....1&postcount=36

Maybe it is possible to change the WOL handling, that the WOL status is just updated, when users click "into" the shoutbox to view the details?

RaceJunkie 10-06-2005 01:12 PM

Where is the c/p for this like the pics show?

Wachtmeister 10-06-2005 06:21 PM

Quote:

Originally Posted by RaceJunkie
Where is the c/p for this like the pics show?

? How can i fix that WOL shows me every user into the shoutbox?

KidneyBoy 10-06-2005 06:24 PM

Quote:

Originally Posted by RaceJunkie
Where is the c/p for this like the pics show?

Are you looking for this:
vBulletin Options > vBShout Options
Hope this helps.
Take it easy
KidneyBoy

Gizmo5h1t3 10-07-2005 03:30 PM

Quote:

works fine for me and im sure most on 3.5.0
dont really see a need for this hack to be updated any longer
apart from the WOL issue that is......

JJR512 10-07-2005 03:47 PM

The WOL issue has been discussed here, especially by myself, and by Fleabag in his add-on of this hack to vBadvanced CMPS thread. There is no known solution for this issue yet. It may be possible, aparently, that the issue isn't with this vBshout per se, but is an underlying fundamental problem with the way vBulletin itself determines where you are.

Brandon Sheley 10-07-2005 04:16 PM

Quote:

Originally Posted by JJR512
The WOL issue has been discussed here, especially by myself, and by Fleabag in his add-on of this hack to vBadvanced CMPS thread. There is no known solution for this issue yet. It may be possible, aparently, that the issue isn't with this vBshout per se, but is an underlying fundamental problem with the way vBulletin itself determines where you are.

:( I still love the shoutbox. just wish this small problem was fixed

zappsan 10-07-2005 07:38 PM

It's not working on Opera for me.
It just keeps loading, but nothing is showing up...
It's working fine on Firefox though...

dbembibre 10-07-2005 08:00 PM

Any options to restrict img bbcode in shoutbox ??

rb290 10-08-2005 02:15 AM

its telling me Loading... on the shoutbox I dont know whats wrong with it

rb290 10-08-2005 02:17 AM

on Internet Explorer its telling me its Loading
on Firefox its saying Database error

Devii 10-08-2005 05:52 AM

Really like this shout box, had to uninstall it due to view errors when resizing a window in firefox, the table/cell would stay at a fixed width while the rest of the page would resize properly, or not resize at all and the page would remain at full width(width it was loaded at) until page refresh.

If there is a way to fix it, I would love to use it.

Jinovich 10-08-2005 09:21 AM

TWo requests :D

Anyway to disable [IMG] and maybe [QUOTE] codes from just the shoutbox but enable Vbcode, or just disable vbcode and enable smilies.

Also when you disable Vbcode and Smilies the censorship filter in the shoutbox also disables.

TeaTree 10-08-2005 01:54 PM

All I get is 'Loading..........'

TheMayhem 10-08-2005 07:00 PM

How can I move the location of the shoutbox from let's say the top of the forumhome template to the bottom?

zappsan 10-08-2005 07:27 PM

Quote:

Originally Posted by TheMayhem
How can I move the location of the shoutbox from let's say the top of the forumhome template to the bottom?

You can change the position in the vBShout settings part in the AdminCP.
https://vborg.vbsupport.ru/attachmen...chmentid=32673

RaceJunkie 10-09-2005 10:54 PM

What is the correct procedure for deleting a Shout?

KidneyBoy 10-09-2005 10:57 PM

Click the "Shoutbox" title on the top of the shoutbox. Select which message you'd like to edit or delete, and there ya go :)

Take it easy
KidneyBoy

vibe 10-10-2005 01:20 AM

great mod yet so easy to install

BLazeD1 10-10-2005 05:47 AM

Could you please tell me how I make the shoutbox font equal to this - <div class="smallfont">

Right now it is too big

Rukas 10-10-2005 07:07 AM

All of my users are able to edit or delete other peoples comments from the Shoutbox, is this a bug or a feature I havent worked out how to turn off?

beacher 10-10-2005 07:22 AM

thanks for this great modification ;)

leeman 10-10-2005 07:50 AM

Installed after upgrade to 3.5 Gold and works like a charm...
Thanx for a great mod.

And to be repeating my self .... Any plans on making it so you can have it as a popup window ....

My members love it and hardly wanna read the forum incase they miss something in the shoutbox....

BLazeD1 10-10-2005 10:03 AM

Smilies dont show for me:
PHP Code:

Smile test :deal

Running 3.5 Gold

mikexxx 10-10-2005 04:12 PM

Quote:

Originally Posted by BLazeD1
Smilies dont show for me:
PHP Code:

Smile test :deal

Running 3.5 Gold

I have the same problem a long time now :tired:


All times are GMT. The time now is 03:05 AM.

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.03474 seconds
  • Memory Usage 1,890KB
  • 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
  • (3)bbcode_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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