vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Integration with vBulletin - Flashchat Integration for vB 3.6 (https://vborg.vbsupport.ru/showthread.php?t=120926)

Reeftanksonline 08-15-2006 09:08 PM

How do I change the intergraded page hight so that the chat window is shorter so it fits better to the look of my site? http://www.photochimper.com/forum/misc.php?do=flashchat

Paul M 08-15-2006 10:06 PM

vBulletin Options > General Settings > FlashChat Height

BETIServices 08-15-2006 10:55 PM

Quote:

Originally Posted by cavyspirit
btw, I figured out how to have the logout process take you straight back to the home page of the forum. In the config file, I made these changes:

'showLogoutWindow' => false, // if false, then use only the ....src=logout.php method, but do not use the popup method at all

and


//Logout behavior
'logout' => array(
'close' => true, // if true, then FlashChat window is closed upon logout
'redirect' => true, // redirectURL must be a valid URL
'url' => 'http://www.yoursite.com/forum', // 'redirect' must be set to true for this to work
'window' => '_parent', // the window to open into. possible values: _blank, _self, _parent, or a named window
),

Wow, Really a life saver.... Thanks you!

Perfect!
It worked and I love it, thanks for the info.

Reeftanksonline 08-16-2006 08:31 AM

Quote:

Originally Posted by Paul M
vBulletin Options > General Settings > FlashChat Height

thank you!

jw00dy 08-17-2006 02:36 AM

Thank you!

*installed*

dt-pain 08-17-2006 11:36 PM

i have no vbchat in my admin...What am i looking for? Thanks

mdvaldosta 08-21-2006 09:49 PM

The flashchat link didn't show up in my quicklinks. What should I do?

Paul M 08-21-2006 10:16 PM

Quote:

Originally Posted by dt-pain
i have no vbchat in my admin...What am i looking for? Thanks

This isn't vbchat, it does not add anything to the ACP.

Quote:

Originally Posted by mdvaldosta
The flashchat link didn't show up in my quicklinks. What should I do?

Add yourself a link manually.

Jaxel 08-26-2006 05:07 PM

config.php AVATAR settings dont work in VB36
Code:

                //Avatar settings
                'avatars' => array(
                        'mod_only' => 'smi_admin,smi_moderator',

                        // for standard users (& customers, if using support mode)
                        'user' => array(
                                'male' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_male', // a smilie code
                                                'default_state' => false, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_male', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                                'female' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_female', // a smilie code
                                                'default_state' => false, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_female', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                        ),
                        // for administrators
                        'admin' => array(
                                'male' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_admin', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_admin', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                                'female' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_admin', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_admin', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                        ),
                        // for moderators
                        'moderator' => array(
                                'male' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_moderator', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_moderator', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                                'female' => array(
                                        'mainchat' => array(
                                                'default_value' => 'smi_moderator', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                        'room' => array(
                                                'default_value' => 'smi_moderator', // a smilie code
                                                'default_state' => true, // true = checked/on by default
                                                'allow_override' => false, // if false, cannot be changed (combo box is disabled)
                                        ),
                                ),
                        ),
                ),

According to these settings... all users should be forced to specific avatars and be unable to change them. Including admins. As an admin, it works, I am forced to a specific avatar and unable to change it. However, normal users still have the ability to change their avatars. Its just not working; I had these settings up for a few days now and users are still able to change their chat avatars.

NeitherSparky 08-27-2006 03:55 AM

I've installed this and will assume its working unless I find it isn't, lol. Thanks!


All times are GMT. The time now is 01:10 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.01761 seconds
  • Memory Usage 1,779KB
  • 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
  • (4)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