Download

All XenForo Resources for only 35.00 $ Months.

Support

Support 24/7 via DM.

Payment

Paypal secure payment.

Refunds

Once you download any Premium files, refunds will not be issued..

Tutorials Config.php options

🕒 Thread author was active 2 hour(s) ago

Xenforo

Ice Admin
Staff member
Ice Staff
2 Level 2
13.5%
Joined
Jan 16, 2026
Messages
365
Highlights
2
Reaction score
92
Points
28
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'];
}


1749518126677.jpg
 
Back
Top