XF 1.4 Xenforo Performance Issues

anmol dubey

Member
My board is not able to support more than 50 concurrent users (google analytics). I am on a dedicated server with below config
Is there any out of the box configuration that needs to be done?

Ps - i did tried searching the forum before posting here.
 
I notice that you are using Arrowchat and that it is available to guests. Maybe this is having an effect, unless you are using their Push Service? You could try disabling it or making it only available to registered users to see if that improves things.
 
Last edited:
Can you show us, your config.php?
<?php

$config['db']['host'] = 'xxxx';
$config['db']['port'] = 'xxxx';
$config['db']['username'] = 'xxxx';
$config['db']['password'] = 'xxxx';
$config['db']['dbname'] = 'xxxx';

$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xx_';
$config['cache']['backend'] = 'File';


$config['superAdmins'] = '1';
 
Top Bottom