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.5 (https://vborg.vbsupport.ru/showthread.php?t=91278)

Paul M 02-25-2006 05:12 PM

Quote:

Originally Posted by southernlady
Paul I upgraded to 3.5.4 this weekend. Flashchat was working fine before. I got it to working now but after I logged out, I can't get logged back in, it won't accept my password. And yes, I did tell it to intergrate. Should I just reinstall again? Or do you want to take a look? I have a test account set up. Liz

I don't have 3.5.4 installed anywhere yet. You can send me access details if you want, I may have time later to have a quick look.

Bellinis 02-25-2006 09:52 PM

I would like to make a little change to the online location, but I I just don't know how :(

Here's how my original (Flashchat Online (2)) looks like:

PHP Code:

if ($userinfo['activity'] == 'flashchat')
{
    
$handled true;
    
$userinfo['action'] = $vbphrase['in_flashchat'];
    
$userinfo['where'] = '<a href="'.$vbulletin->options['bburl'].$vbphrase['flashchat_path'].'">Click here to join the chat!</a>';


And this is what I would like to change so that the chat opens in a new window:

PHP Code:

<a href="http://www.mydomain.com/board/chat/flashchat.php" 
onclick="window.open(this.href,'NAME','top=0,left=0,width=650,height=500'); return false;" title="NAME">Click here to join the chat!</</a

How to change the code to make it work in php? :disappointed:

Thank you very much in advance :)

Paul M 02-26-2006 01:25 AM

Yes, read the notes in the first post.

southernlady 02-26-2006 03:14 AM

Paul, send you a PM with access details. Thank you. Liz

southernlady 02-26-2006 09:52 AM

Okay, what did I screw up? Liz

Paul M 02-26-2006 09:54 AM

You did not have the CMS file specified in [flashchat's] config.php ;

PHP Code:

        //your CMS system
        
'CMSsystem' => 'vbulletin35CMS',// defaultCMS - default CMS, blank - stateless CMS 

I would guess you uploaded new flashchat files over the top of the old ones - by default the setting is blank.

southernlady 02-26-2006 09:56 AM

Okay, Paul, I just tried to log in and now I'm getting *another user is logged in with this user name*. Liz

Paul M 02-26-2006 10:06 AM

You were already logged in (one of your failed attempts I would guess). I have cleared all the old connections for you.

southernlady 02-26-2006 10:32 AM

Thanks, Paul. Liz

Guest210212002 03-01-2006 11:24 PM

I made a new usergroup, just for one user, and it says that he's banned. I never got the AdminCP stuff to work, users in the flashchat admin link says:

Quote:

This option is not available when FlashChat is integrated with a custom CMS (content management system).
Please use the user administration tools which come with your system to add, edit, or remove users.
And there are no bans. Why would one usergroup be banned? What am I missin'?

Edit: Was in CMS file. )

Paul M 03-02-2006 08:16 AM

It always pays to RTFM first :)

Quote:

More notes:

* This integration is for Flashchat versions 4.4.1 upwards, support for versions prior to 4.4.1 has now been withdrawn.
* If you use non standard usergroups you will need to edit the CMS file (near the bottom) to give them permission to enter the chat.

CSS59 03-04-2006 05:14 AM

my forums are in domain.com/forums
I installed the chat in domain.com/chat

The chat is not recognizing VB. What path do I need to chage in what file to point to my forums?

RichTJ99 03-04-2006 06:22 AM

somewhat off topic but...

I added Flashchat to our board and created a forum link on our forum home page. Members hardly ever scroll all the way to the bottom to see who's in the chat room so...

Is it possible to add the names of the people chatting next to the link for the chatroom? Similar to the picture below. Or maybe a mouse over, instead of a description it could show the names of the chatters?

Paul M 03-04-2006 09:18 AM

Install it in domain.com/forums/chat/

CSS59 03-04-2006 01:19 PM

Quote:

Originally Posted by Paul M
Install it in domain.com/forums/chat/


so there is no way of doing this w/o putting it in the forums folder?

Paul M 03-04-2006 04:07 PM

Not without file hacking.

wacnstac 03-05-2006 02:18 PM

A question: where is the variable chattersdesc defined, I'd like to change it.

Paul M 03-05-2006 03:23 PM

If you require support, please click install.

FYI, I don't know what you mean by chattersdesc anyway.

wacnstac 03-05-2006 11:52 PM

It's in the DisplayChatters template:

$chattersdesc $totalchatters

I want to change this variable.

Paul M 03-06-2006 12:02 AM

Perhaps you missed this.

Quote:

Originally Posted by Paul M
If you require support, please click install


kira 03-06-2006 05:03 AM

Excellent work, thank you so much, Paul M. I've installed this and the who's in chat addon, and I'm really thrilled to see how smoothly it works. (Knock wood ... I'm not "live" yet, so my users haven't had a chance to mess -- er, I mean test -- things yet. :))

Thanks a million!

pauloo 03-06-2006 10:50 AM

New FlashChat version 4.5.4 ;)

VB-STYLE 03-06-2006 06:23 PM

vb-style click Install :)

redd 03-08-2006 05:39 PM

I'm really interested in this, but can anyone tell me if the flash chat is resource intensive? We're pushing our limits on our server as it is. We have a dedicated server but we're very busy. Has anyone noticed an increase in server load with flash chat?

Paul M 03-08-2006 06:20 PM

Well this isn't really the place for such a discussion, but yes, obviously it will increase the load on your server, each user polls the server every three seconds.

Bellinis 03-08-2006 10:05 PM

Could someone please help me out here:
https://vborg.vbsupport.ru/showpost....&postcount=724

The only think I'd like to change is the <a href for flashchat on the who's online page. (so the link will open in a new window). Since it's PHP, I don't know how to format the following HTML:
PHP Code:

<a href="http://www.mydomain.com/board/chat/flashchat.php"  
onclick="window.open(this.href,'NAME','top=0,left=0,width=650,height=500'); return false;" title="NAME">Click here to join the chat!</</a

Thanks guys ;)

Paul M 03-09-2006 12:41 AM

I would have thought all you need is this ;
PHP Code:

<a href="http://www.mydomain.com/board/chat/flashchat.php" target="_blank" >Click here to join the chat!</a


Bellinis 03-09-2006 05:32 AM

Quote:

Originally Posted by Paul M
I would have thought all you need is this ;
PHP Code:

<a href="http://www.mydomain.com/board/chat/flashchat.php" target="_blank" >Click here to join the chat!</a


Yeah, I know, the URL is correct, but how about opening it in the specifiec window size ?

pauloo 03-11-2006 04:54 AM

Hello,

The news file for integration not works with flashchat 4.5.4.The chat don't start.

thank you

Paul M 03-11-2006 05:29 AM

Hmm, try downloading it again - there seemed to be a stray charecter in the first few lines that I have now removed. Hopefully that was the problem. I can't test it from where I am atm.

pauloo 03-11-2006 12:57 PM

sorry, don't start
I keep your version 2.58

thank you

Holidazed 03-11-2006 03:01 PM

If you want the FlashChat admin area to be accessable from within yor ACP, just upload this file to your ./includes/xml folder.

majoreyeswater 03-11-2006 04:06 PM

Ok at the risk of experiencing the wrath of those more knowledgeable than me....

I didn't have flashcat, but have bought it and copied it to my server.

All seems to have gone well.

Have downloaded this mod..and amended the en.php and uploaded the vbulletin35CMS.php

I then ran install on the flashchat - selected vb3.5 all seems to have gone well.


I then uploaded the product, and it did so successfully.

But.. what happens now?

The instructions don't reference any template edits, so where is the link to it for the users - I can add one in the nav bar, but assumed the xml would take care of it. Is the link to the start of the flashchat - http://ww.../chat/flashchat.php ?

Is the admin of it through the admincp or is it separate (.chat/admin.php?)

Where is the 'who's online' plug-in which is part of this hack shown?

I have read through a number of these posts as much as I can understand, and have seen mentioned that I need to enter my VB licence number in the CMS file.. can anyone tell me where, or indeed why - as the if I go directly to flaschat, it logs me in directly so is integrating correctly.

If anyone can help with these, and apologies If I am being obtuse, just can't work them out.

Thanks

Paul M 03-11-2006 05:23 PM

Quote:

Originally Posted by pauloo
sorry, don't start
I keep your version 2.58

thank you

Well I did warn you I had no ability to test it (as I was at work). There was a missing semi-colon which has been fixed, and it works fine on my test site now. :)

Paul M 03-11-2006 05:28 PM

Quote:

Originally Posted by majoreyeswater
The instructions don't reference any template edits, so where is the link to it for the users - I can add one in the nav bar, but assumed the xml would take care of it. Is the link to the start of the flashchat - http://ww.../chat/flashchat.php ?

Is the admin of it through the admincp or is it separate (.chat/admin.php?)

Where is the 'who's online' plug-in which is part of this hack shown?

I have read through a number of these posts as much as I can understand, and have seen mentioned that I need to enter my VB licence number in the CMS file.. can anyone tell me where, or indeed why - as the if I go directly to flaschat, it logs me in directly so is integrating correctly.

You should re-download this as the vbulletin35CMS.php was broken. Make sure you upload the working version to the right place.

There is no requirement to enter your vb licence number, that was removed ages ago.

You have to add the link manually to your navbar (yes, link to flashchat.php).

Smiry Kin's 03-11-2006 07:15 PM

Ermm were do i allow these, or what URL do i put in, because mydomain.com/chat doesnt work :s.. i have to click login using blah blah..
Quote:

vB 3.5 integration allows ;

* Authorised members to be automatically logged in.
* All non authorised members are locked out (both are based on usergroup membership).
* If enabled, the users location is now displayed in WOL (use the plugin to avoid "Unknown Location").
* The CMS file no longer requires your vb licence code to be entered.
* Automatic login now works even if a member has not ticked "remember me".

Paul M 03-11-2006 07:43 PM

You don't 'allow' them, they are automatic if it's installed correctly.

majoreyeswater 03-11-2006 08:18 PM

Quote:

Originally Posted by Paul M
You should re-download this as the vbulletin35CMS.php was broken. Make sure you upload the working version to the right place.

Sorry, didn't quote understand what this meant.

The vbulletin35CMS.php was downloaded from the hack - should I upload a new one, and what will that address?

Thanks

majoreyeswater 03-11-2006 08:30 PM

....as a postscript, I uploaded the Who-is-chatting.xml product and that has added the the who's online in chat table.

should i amend anything in the original flashchat installation, or with the cms file, or will everything be fine?

Paul M 03-11-2006 09:42 PM

If your chat is working then don't worry about the CMS file - there was a broken version uploaded for a few hours.

You don't need to change anything for the WIC hack.


All times are GMT. The time now is 07:53 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.02239 seconds
  • Memory Usage 1,838KB
  • 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
  • (6)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
  • (1)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