vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Chat Modifications - [Shout/Chatbox 0.7.06] GCBOS - Generic Chat Box Operating System (https://vborg.vbsupport.ru/showthread.php?t=228046)

ComoEstaEso-com 02-01-2010 11:13 PM

Quote:

Originally Posted by Videx (Post 1972401)
This would likely be a permissions issue. Remember you have to manually set everything in vb4. To get it at the top you just want to use the Advertising Manager. AdminCP>Advertising>Add New Ad . It will show at the top of all 3 products - the CMS, Blog, and Forum.

Thanks for the reply and help Videx!
So I go to Add New Ad... Select "Below Navbar"
What code should I drop in the "Ad HTML" box?

Please excuse my n00bness....
Help much appreciated! :)

Videx 02-01-2010 11:41 PM

Oh dear. No, I'm the one that must beg forgiveness. I think. Actually, I was thinking of a different mod where I slipped the call into an ad block. But really, I don't suppose you couldn't call the shoutbox that way. I don't know. For mine, I just followed the instructions and inserted the call below the navbar line.

hridayath 02-02-2010 02:38 AM

Quote:

Originally Posted by ComoEstaEso-com (Post 1972343)
I just installed it and everything went smoothly.
Working like a charm!



hridayath,
I'm no expert... yet let's see.
What are you having problems with?
1- upload contents of 'upload' folder to your forum
2- install new product with the attached .xml file
3- To add the "<!-- {SHOUTBOX} -->" do it like this:

Admin CP >> Styles & Templates >> Style Manager >> drop-down menu "Edit Templates"
Then, scroll down on the list until you see Forum Home Templates, then double-click on it.
Below that, a template called "FORUMHOME" will appear.
Click on that, then click on the "Customize" button on the right (or on the "Edit" button).

Then, here was my edit (there might be a better way to do it... this is what I did and it works)
Code:

{vb:raw headinclude_bottom}
</head>
        <body>

        {vb:raw header}

        {vb:raw navbar}
<!-- {SHOUTBOX} -->

        <div id="pagetitle">

Hope that helps!

Thank you for the reply and I tried it without luck but what I am gonna re-install everything starting from the upload. Will let you know the status.

MyChemicalSelf 02-02-2010 06:30 AM

Quote:

Originally Posted by macheath (Post 1972385)
If anyone is interested in getting thread replies:

Create a new plugin.
Product: GCBOS
Hook Location: postdata_postsave
Title: New reply
Execution Order: 5
Plugin PHP Code:
PHP Code:

require_once(DIR '/includes/class_gcbos.php');
$gcbos = new GCBOS();

global 
$vbulletin;

if (
$vbulletin->options['gcbos_forum_alert'] == && !in_array($this->info['forum']['forumid'], (array)explode(';'$vbulletin->options['gcbos_forum_exceptions'])))
{

$titleprefix '[post=' intval($this->fetch_field('postid')) . ']';
$titlesuffix '[/post]';
    
$gcbos->create_message('replied to the thread ' $titleprefix unhtmlspecialchars($this->info['thread']['title']) . $titlesuffix$vbulletin->userinfo['userid'], TIMENOW0GCBOS_MESSAGE_TYPE_NORMAL$vbulletin->userinfo['userid']);



:) great thanks for the help

if you want this to show as an action you could also use

[QUOTE=macheath;1972385]If anyone is interested in getting thread replies:

Create a new plugin.
Product: GCBOS
Hook Location: postdata_postsave
Title: New reply
Execution Order: 5
Plugin PHP Code:
PHP Code:

require_once(DIR '/includes/class_gcbos.php');
$gcbos = new GCBOS();

global 
$vbulletin;

if (
$vbulletin->options['gcbos_forum_alert'] == && !in_array($this->info['forum']['forumid'], (array)explode(';'$vbulletin->options['gcbos_forum_exceptions'])))
{

$titleprefix '[post=' intval($this->fetch_field('postid')) . ']';
$titlesuffix '[/post]';
    
$gcbos->create_message('replied to the thread ' $titleprefix unhtmlspecialchars($this->info['thread']['title']) . $titlesuffix$vbulletin->userinfo['userid'], TIMENOW0GCBOS_MESSAGE_TYPE_ACTION$vbulletin->userinfo['userid']);


Anyway im working on the next build of GCBOS 0.7 RC3 at the minute i should have a few new fixes in store (infraction error) etc.

ComoEstaEso-com 02-02-2010 05:51 PM

Quote:

Originally Posted by Videx (Post 1972671)
For mine, I just followed the instructions and inserted the call below the navbar line.

Thanks for the reply Videx! :)

I placed it below {vb:raw navbar}, yet it still only shows in the forums.
What template should I edit in order to have the shoutbox displayed everywhere on the site?

Here's what I have at the moment (partial copy/paste, with the pertinent info)
Code:

</head>
        <body>

        {vb:raw header}

        {vb:raw navbar}
<!-- {SHOUTBOX} -->

        <div id="pagetitle">
                <h1>{vb:raw vboptions.bbtitle}</h1>
                <p id="welcomemessage" class="description">{vb:rawphrase welcome_to_the_x, {vb:raw vboptions.bbtitle}}</p>
        </div>

==========

My other query, if somebody could please shed some light:
Unregistered / Not Logged In users are not able to see any of the messages.
The shoutbox displays in the window, yet it contains no messages.

I went to the Unregistered / Not Logged In group, and set the permissions to:
GCBOS Permissions
Can View GCBOS
YES
Can Talk in GCBOS
YES


Any ideas?

THANKS!

teat 02-02-2010 06:18 PM

I tried all that, but I cannot get the box to appear. I have admins to yes you can see it, but I cannot see the thing.

Videx 02-02-2010 07:23 PM

Quote:

What template should I edit in order to have the shoutbox displayed everywhere on the site?
I don't know, but I wouldn't do that myself since I'm on a shared server. Remember, especially until this box gets an idle timeout feature, that members using it a lot and just hanging out and watching it will use a lot of server resources. People on shared servers could find themselves suspended.

Trek 02-02-2010 07:28 PM

I dropped it in FORUMHOME and FORUMDISPLAY to minimize load.

If you want it on every page, drop it at the very bottom of the NAVBAR template.

MyChemicalSelf 02-02-2010 09:16 PM

Just sent rc3 to some testers :) fixed the infraction error added notifications for new post and /me and /pm loophole for muted users.

Trek 02-02-2010 09:38 PM

Quote:

Originally Posted by MyChemicalSelf (Post 1973410)
Just sent rc3 to some testers :) fixed the infraction error added notifications for new post and /me and /pm loophole for muted users.

Sounds good, what about a timeout so it stops polling after X minutes? This would help a lot.


All times are GMT. The time now is 08:09 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.02287 seconds
  • Memory Usage 1,773KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (6)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
  • (10)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