XF 2.1 how can i improve my forum performance

A lot of that report seems to be ad network related. But the bigger issue seems to be your Time to First Byte (TTFB).

It's 25 seconds when I tested it. That can't be right... right? Is that how long it takes for you to load it?

Something's very wrong. Either your server, or an external service that's hanging.

arn
 
TTFB indicates how long it takes your server to generate and send the page.

The problem is going to be somewhere on your server.

Do you have a host you can ask? They might be able to figure it out if they are hands on. Otherwise, it's a little tricky.

Check the admin panel to see if there are any server errors logged. I'd also try turning off all add-ons first. See if that helps to start. If it does help, it's likely related to an addon. There's a disable all button in the Admin control panel for add-ons.

arn
 
talked with host provider they said it the forum itself is having the problem. no issue from server side. no logs recorded in admin panel.

is this correct way for https redirection ?
Code:
RewriteCond %{HTTPS} !on
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

disabled all addons. still problem exists.
 
Top Bottom