vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Chat Modifications - MGC Chatbox (with AJAX) (https://vborg.vbsupport.ru/showthread.php?t=148472)

carlosacgj 07-22-2007 09:22 AM

Quote:

Originally Posted by VBDev (Post 1297985)
I understand the second part of your message, but could you please explain me the first one, this is bearly hard to understand :(


easy.... it's only information for a persons that have a VB 3.5, this persons can install your mod and this work fine :)

Piccante 07-22-2007 02:21 PM

Chatbox working perfectly, apart from one strange problem.

I have a user who cannot see it. She is a Registered User and the usergroup does have permission. Everyone else in the same usergroup can view the chatbox.

I gave her the url for the full page chatbox and she can view that, but she still can't view the normal chatbox on any of the forum pages.

I installed the mod "Admin can login as user". When I login as this member... it is true... the chatbox is not visible.

I'm stumped... any ideas?

jamper 07-22-2007 02:47 PM

Congratulations, great mod. Thank you:up:

Quote:

Originally Posted by Gemma (Post 1296372)
I tried it wit ibproarcade but it jus shows up as 'loading'

I'm having the same problem. Any sugestions?

powerful_rogue 07-22-2007 05:11 PM

Is it possible to add this chatbox to the "Whats Going on?" part of the forum?

VBDev 07-22-2007 08:21 PM

Quote:

Originally Posted by carlosacgj (Post 1298066)
easy.... it's only information for a persons that have a VB 3.5, this persons can install your mod and this work fine :)

Yes that I understood but you had told something first on another subject no ?

Quote:

Originally Posted by Piccante (Post 1298260)
Chatbox working perfectly, apart from one strange problem.

I have a user who cannot see it. She is a Registered User and the usergroup does have permission. Everyone else in the same usergroup can view the chatbox.

I gave her the url for the full page chatbox and she can view that, but she still can't view the normal chatbox on any of the forum pages.

I installed the mod "Admin can login as user". When I login as this member... it is true... the chatbox is not visible.

I'm stumped... any ideas?

Hum the fact that she can view the chabox but not the full page one is very strange.

Does she have the options in the user cp ? (if no then it's a known bug that might have messed up with that and this'll be corrected in the new version :))

Quote:

Originally Posted by jamper (Post 1298280)
Congratulations, great mod. Thank you:up:

I'm having the same problem. Any sugestions?

I have to test it but as I don't have ibproarcade install I'll do that once I have time.

Quote:

Originally Posted by powerful_rogue (Post 1298373)
Is it possible to add this chatbox to the "Whats Going on?" part of the forum?

Actually not but maybe you could achived that by using the display chatbox when having problems on some styles.

This could help you add the $chatbox_forumhome just where you want it to be shown in the what's going on.

Piccante 07-22-2007 09:13 PM

Quote:

Originally Posted by VBDev (Post 1298528)
Hum the fact that she can view the chabox but not the full page one is very strange.

Does she have the options in the user cp ? (if no then it's a known bug that might have messed up with that and this'll be corrected in the new version :))

It's the other way around. She has no chatbox at the top of forum home, but she can view the full page version by typing in the url. I can reproduce her problem by logging into her account.

I'm not sure what options you are talking about in the user cp? No one has any chatbox options in the user cp as far as I can see.

I was thinking about telling her to create a new account where it should work (as no one else has a problem), and then using the merge user function to move all her old posts over to her new account. But that would be a last resort :D

maidos 07-22-2007 10:51 PM

hello i have a request, alot of idiots are treating the shoutbox as a search function so i was wondering if u can move the text field where u type the msg to the bottom instead of the top.. or make a wanring text when the person wish to type something

obmob 07-23-2007 01:14 AM

Quote:

Originally Posted by obmob (Post 1271420)
Oh, no, smilie is ok, the problem is that the first line where the date and username are, is not aligned with the chat's messages.

Checked alt classes, but they don't have padding or margin asigned. :eek:

In the end I found one template has a "top" alignement, that's why i was having this problem... haven't checked the latest version... :p

JakkFrosted 07-23-2007 03:45 AM

This is going to seem like a dumb question but I'm very new to this stuff. In the instructions it says:
Quote:

In the additional CSS, add : /** DEBUT MGC CHATBOX **/
.mgc_cb_date {
color : #555555;
}

.mgc_cb_me {
color : #FF0000;
}
/** FIN MGC CHATBOX **/

What additional CSS am I looking for?

VBDev 07-23-2007 04:54 AM

Quote:

Originally Posted by Piccante (Post 1298565)
It's the other way around. She has no chatbox at the top of forum home, but she can view the full page version by typing in the url. I can reproduce her problem by logging into her account.

I'm not sure what options you are talking about in the user cp? No one has any chatbox options in the user cp as far as I can see.

I was thinking about telling her to create a new account where it should work (as no one else has a problem), and then using the merge user function to move all her old posts over to her new account. But that would be a last resort :D

Then if noone is having the option in the usercp, it means that you certainly have not done the modification in the modifyoptions template which is necessary. If you don't do it, then if the user changes his option he will not see the chatbox anymore (as the option to show the chatbox will not be present and so supposed to be equal to 0 by php).

Due to an actual bug in my code, even if you modify now the modifyoptions template, your user won't be able to revert state of the show chatbox option (which will be corrected in the upcoming very soon 1.4).

Anyway this can be corrected by modyfing the mgc_cb_params field of the user table in the database and ensuring that the 1 in bold case in the following value is equal to 1 in the value of your user field:

Code:

a:7:{s:13:"mgc_cb_police";s:1:"0";s:13:"mgc_cb_taille";i:0;s:14:"mgc_cb_couleur";b:0;s:8:"mgc_cb_b";i:0;s:8:"mgc_cb_u";i:0;s:8:"mgc_cb_i";i:0;s:11:"mgc_cb_show";i:1;}
Quote:

Originally Posted by maidos (Post 1298614)
hello i have a request, alot of idiots are treating the shoutbox as a search function so i was wondering if u can move the text field where u type the msg to the bottom instead of the top.. or make a wanring text when the person wish to type something

Quote:

Originally Posted by JakkFrosted (Post 1298738)
This is going to seem like a dumb question but I'm very new to this stuff. In the instructions it says:


What additional CSS am I looking for?

If you go in the style manager in your admincp, select the Main CSS option in the dropdown list of your style.

Then go to the bottom of the page, you'll see a field named Additionnal CSS definitions, this is where you have to put that bit of code :)


All times are GMT. The time now is 09:59 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.02608 seconds
  • Memory Usage 1,757KB
  • 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
  • (1)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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