ArrowChat - Facebook Style Chat

ArrowChat - Facebook Style Chat v4.1.1

No permission to download
But I remember ArrowChat had an update a long time ago (1+ year?) where they said Sync messages over all tabs in same browser should be fixed and work now.

Sad to hear it still doesnt work :(
 
arrowchat disappears when i enable cache in the config

$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['backend'] = 'File';
$config['cache']['backendOptions'] ['cache_dir'] = '/path/to/cache';
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] ['cache_id_prefix'] = 'xf_';

anyone know how to resolve this?
 
I bout a arrowchat, it look like great and my members really like it.

I would like to share your experiences, it may be useful to someone.

Chat is not explicitly tested for working with large forums because banal entrance to the admin panel, stopped a chat work in the forum, and makes you nervous themselves, waiting loading of the admin panel.

but because chat measures the size of the entire database and not their own tables and counting your forum members.... completely useless to us information, but that is what prevents the panel work.

Open a /yourchatfolder/admin/index.php

and

replace a

Code:
    $num_users = $db->count_all("
        " . TABLE_PREFIX . DB_USERTABLE . "
    ");

to
Code:
    $num_users = 0;

    /*
    $num_users = $db->count_all("
        " . TABLE_PREFIX . DB_USERTABLE . "
    ");
    */

and

Code:
$database_size = CalcFullDatabaseSize(DB_NAME);

to
Code:
$database_size = "N/A";

It decides problem with loading a admin panel on large forums.


Great chat, waiting for new versions!

Best Regards
 
So many mixed reviews..
How does with work with Xenforo? Does the chat stand alone from private conversations?
 
@ArrowSuites - is there anything specific I needs to worry about for this to work properly on my server? Its a semi dedicated account.
Nope, it just requires PHP version 4.3 or higher which just about everyone has.

So many mixed reviews..
How does with work with Xenforo? Does the chat stand alone from private conversations?
The XenForo integration:
  • Automatically log your users into the chat when they log in your site
  • Get their XenForo username
  • Get their XenForo avatar
  • Get a link to their profile
  • Get their XenForo group and setup group permissions
It is different from the XenForo private conversations.
 
Top Bottom