Xenforo 2.2.8 response time of the forum is slow

hongtrang

Member
After I upgraded to version 2.2.8, the response time of the forum was quite a lot. I use webpagetest.org to test, First Byte Time (back-end processing): 37/100 (score F)

Before in version 2.2.7 P1, my First Byte Time always got an A.
I made no changes on the server side, is this a bug of Xenforo 2.2.8?
My config.php
Code:
$config['enableMail'] = true;

$config['fullUnicode'] = true;

$config['enableListeners'] = true;

$config['enableOneClickUpgrade'] = true;

//Used: br

$config ['enableGzip'] = false;

//Memcached

$config['cache']['enabled'] = true;

$config['cache']['provider'] = 'Memcached';

$config['cache']['config'] = [

'server' => '127.0.0.1'

];

//Page Cache

$config['cache']['enabled'] = true;

$config['pageCache']['enabled'] = true;

$config['cache']['context']['page']['css']['provider'] = 'Memcached';

$config['cache']['context']['page']['config'] = ['server' => '127.0.0.1'];

$config['pageCache']['lifetime'] = 600;
My server has both Zend OPcache and Memcached setup. First Byte Time got an F after I upgraded Xenforo 2.2.8 :(
 
Last edited:
However, I'm trying to figure out why the page loads so slowly (without Memcached) :(
Server info:
Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
RAM: 32GB
SSD
PHP 7.4.26, MariaDB 10.4, Zend Opcache
 
I'm using 2.2.8 on a VPS with a fraction of the resources you have and no issues, its very fast with PHP 7.4.3. Do you have any add-ons?

Long TTFB normally means the code is taking an abnormally long time to execute. Caching can help by caching the results but it's masking a problem.

TTFB: 377ms
Redirect: 0ms
Connect: 208ms
Backend: 169ms
 
a9795bee-4c91-4dd4-9381-2edc5efe632d-jpeg.261346

please the link this website to test page speed
 
Last edited:
Top Bottom