Please pay particular attention to the compatibility version of each add-on. For example if it indicates Compatible XF 2.x versions: 2.3 that indicates the add-on will only work if you have XF 2.3 installed.

XenForo Config Config.php options

XenforoNulled

Member
Staff member
Site Admin
Points 8
Member Active member
17 Points
56
3
0
7 day activity
Sun
Mon
Tue
Wed
Thu
Fri
Sat
Common config.php options.

Code:
$config['enableAddOnArchiveInstaller'] = true;
$config['development']['enabled'] = true;
$config['development']['fullJs'] = true;
$config['enableListeners'] = false;
$config['enableMail'] = false;
$config['enableTfa'] = false;
$config['fullUnicode'] = true;
$config['maxImageResizePixelCount'] = 1000000000;
$config['cookie']['prefix'] = 'xf_';
$config['enableClearSiteData'] = false;
$config['removeDefaultGuestSession'] = true;
$config['pageCache']['recordSessionActivity'] = false;

If using CloudFlare:

PHP:
if (isset($_SERVER['HTTP_CF_CONNECTING_IP']))
{
    $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
}

1778231947799.png

If you are experiencing a slow logout then add the following to config.php

$config['enableClearSiteData'] = false;

The following link explains:

https://xenforo.com/community/threads/slow-logout-on-chrome-on-xf-com.231905/post-1753606
 
Back
Top