Points
8
Member
Active member
17 Points
56
3
0
7 day activity
Sun
Mon
Tue
Wed
Thu
Fri
Sat
Common config.php options.
If using CloudFlare:

If you are experiencing a slow logout then add the following to config.php
The following link explains:
https://xenforo.com/community/threads/slow-logout-on-chrome-on-xf-com.231905/post-1753606
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'];
}

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