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 - MGC Chatbox Evo (https://vborg.vbsupport.ru/showthread.php?t=168992)

Fireproof 09-01-2008 08:52 PM

Quote:

Originally Posted by VBDev (Post 1612286)
Yes you can by following the chatbox style issue and adding the variable as explained only in your needed style's templates.

I really hate to bug you, but I am such a newbie, and that advice, while it sounds promising, is not enough for me to do anything with.

Can you be a little more specific? What variable should I be looking for and where might I find it? I'm assuming that the "installation process" added some variable to all my styles somewhere. So it sounds like I can go find whatever that is in the mobile style and just manually remove it.

Please let me know.

thanks in advance.

NeutralizeR 09-01-2008 10:57 PM

Quote:

Originally Posted by VBDev (Post 1612300)
Here you go :

Edit the mgc_chatbox_ajax.php file and search in the code contained into the condition $_POST['do'] == 'ajax_refresh_chat' :

You must modify the sql request :

PHP Code:

      $chats $vbulletin->db->query_read("
            SELECT c.*,fromu.userid AS fromuserid,fromu.username AS fromusername,fromu.usergroupid AS fromusergroupid,fromu.displaygroupid AS fromdisplaygroupid,
            tou.userid AS touserid,tou.username AS tousername,tou.usergroupid AS tousergroupid,tou.displaygroupid AS todisplaygroupid
            FROM " 
TABLE_PREFIX "mgc_cb_evo_chat AS c
            LEFT JOIN " 
TABLE_PREFIX "user AS fromu ON (c.fromuid=fromu.userid)
            LEFT JOIN " 
TABLE_PREFIX "user AS tou ON (c.touid=tou.userid)
            WHERE 
$where_clause
            ORDER BY sticky DESC,c.dateline DESC
            LIMIT 
$limit
      "
); 

By adding after :

PHP Code:

            LEFT JOIN " . TABLE_PREFIX . "user AS tou ON (c.touid=tou.userid

This:

PHP Code:

LEFT JOIN " . TABLE_PREFIX . "userfield AS uf ON(fromu.userid uf.userid

And after :

PHP Code:

,tou.displaygroupid AS todisplaygroupid 

You should add field8.

Then you can use $chat[field8] in the mgc_cb_evo_chatbit template.

Thank you! :)

VBDev 09-02-2008 05:38 AM

Quote:

Originally Posted by Fireproof (Post 1612330)
I really hate to bug you, but I am such a newbie, and that advice, while it sounds promising, is not enough for me to do anything with.

Can you be a little more specific? What variable should I be looking for and where might I find it? I'm assuming that the "installation process" added some variable to all my styles somewhere. So it sounds like I can go find whatever that is in the mobile style and just manually remove it.

Please let me know.

thanks in advance.

No no your install process shouldn't have added variables to your style for the chatbox display :)

However, if you follow the little how to which is in the chatbox readme for the style issue this should be possible to only display the chatbox in the styles you want.

I think you should give it a try but I can perhaps add a new option in the next chatbox release.

zelnik 09-02-2008 07:25 AM

Hi VBDev,

Firstly welcome back from your holiday I hope you had a great time..

I was wondering if you could help me on the following issues:

https://vborg.vbsupport.ru/showpost....postcount=2363
https://vborg.vbsupport.ru/showpost....postcount=2366

Thank you..

reitube 09-02-2008 10:16 AM

Quote:

Originally Posted by VBDev (Post 1612286)
The option for the width of the chatbox is interesting, I will add that request.

However I don't see the point of separating the username and timestamp. Btw it would really complicate the chatbox template and I am not that up to.


Thanks for adding that as a request!
I know, separating timestamp and username will complicate the template but would reduce the necessary width of the box (in order to get the whole thing fit on the side columns).

Reagrds

VBDev 09-02-2008 12:20 PM

Quote:

Originally Posted by zelnik (Post 1609795)
Thank you for taking the time in replying, I've had a look in the FF error console and although I've not located that that error I have found several of the other "unknown location" errors whilst viewing the whois and they are as follows:

Error: syntax error
Source File: http://www.myspain.es/forum/plaza/cl...d/js/jquery.js
Line: 1
Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-----

Error: syntax error
Source File: http://www.myspain.es/forum/plaza/cl...utocomplete.js
Line: 1
Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

----

Error: vBulletin is undefined
Source File: http://www.myspain.es/forum/plaza/cl..._menu.js?v=373
Line: 11

------

Error: YAHOO is not defined
Source File: http://www.myspain.es/forum/plaza/cl...lobal.js?v=373
Line: 11

--------------

Error: syntax error
Source File: http://www.myspain.es/forum/plaza/cl...n-min.js?v=373
Line: 1
Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

------

Error: syntax error
Source File: http://www.myspain.es/forum/plaza/cl...event.js?v=373
Line: 1
Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

---------

The odd thing is I'm not sure why it is calling it from that location as the only place the shoutbox is located is on the main forum index page..

Any help would be greatly appreciated. Thanks.

Perhaps It's a problem with vBSEO?

Hum it's odd.

It's only on that page that you get those errors ?

VBDev 09-02-2008 12:21 PM

Quote:

Originally Posted by reitube (Post 1612675)
Thanks for adding that as a request!
I know, separating timestamp and username will complicate the template but would reduce the necessary width of the box (in order to get the whole thing fit on the side columns).

Reagrds

Yes but in that case, how would the chat looks like ??

Could you make a small drawing ?

Fireproof 09-02-2008 12:21 PM

Quote:

Originally Posted by VBDev (Post 1612515)
No no your install process shouldn't have added variables to your style for the chatbox display :)

However, if you follow the little how to which is in the chatbox readme for the style issue this should be possible to only display the chatbox in the styles you want.

I think you should give it a try but I can perhaps add a new option in the next chatbox release.

Oh - okay, I get it now. :)

And yes, that would be a very CONVENIENT feature in the next version if it's not too difficult to implement.

Keep up the great work!!

sturdy 09-02-2008 02:28 PM

Imported the german lang-pack, why do I get "entrez voutre chat" in the textfield before entering any text the first time ?

zelnik 09-02-2008 02:46 PM

Quote:

Originally Posted by VBDev (Post 1612756)
Hum it's odd.

It's only on that page that you get those errors ?

Yes I just get those in the error console, but if think it's a VBSEO issue with that as it mentions forum/plaza and there is not a directory called plaza but we have a section called the plaza on the forum.

But we get this error when you're watching the whois online when someone posts a message :

Unknown Location
/forum/clientscript/mgc_cb_evo_add/css/indicator.gif


All times are GMT. The time now is 11:25 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.08375 seconds
  • Memory Usage 1,775KB
  • 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
  • (4)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (7)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