Recommended changes / updates here?

You could get MariaDB up to 10.3. Outside of that everything looks fine.

Is Zend Opcache present? Are you using Memcache or Redis for XF caching?
 
Thanks for looking!

I can't believe how much faster the site is with PHP 7... made an immediate difference in speed. It took a hit with the upgrade to XF2... and I was curious as to what was going on... now I know. PHP 7 is important to XF2 in more ways than one.
 
I would install gmp support so you could have Push Notifications for your users. And as mentioned, MariaDB 10.3 as well (unless you're running something outside of XenForo that might have issues)
 
Ehhh. Redis is hip and trendy right now. You can't go wrong with Redis or Memcached really.

So I decided to try out Memcached and had the server techs enable it... but when I add the following code to our config.php file, we get nothing but a blank white page on the site:

Code:
$config['cache']['enabled'] = true;
$config['cache']['provider'] = 'Memcached';
$config['cache']['config'] = [
    'server' => '127.0.0.1'
];
 
So I decided to try out Memcached and had the server techs enable it... but when I add the following code to our config.php file, we get nothing but a blank white page on the site:
Try enabling debug mode to see if there's any errors.
 
I enabled debug in the config file, but no errors logged.

Maybe we can try Redis and see what happens.
 
Server techs show these errors today...

Code:
root@host [***/public_html]# tail error_log
[01-Jun-2019 18:17:05 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:05 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:10 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:10 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:16 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:16 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:19 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:19 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:28 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:28 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0

I uninstalled iconify, which wasn't working anyway, but still get the blank white page.

We even tried APC and get white pages.
 
Server techs show these errors today...

Code:
root@host [***/public_html]# tail error_log
[01-Jun-2019 18:17:05 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:05 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:10 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:10 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:16 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:16 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:19 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:19 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0
[01-Jun-2019 18:17:28 UTC] PHP Parse error: syntax error, unexpected '$iconifyConfigFile' (T_VARIABLE) in /***/public_html/src/config.php on line 23
[01-Jun-2019 18:17:28 UTC] PHP Fatal error: Exception thrown without a stack frame in Unknown on line 0

I uninstalled iconify, which wasn't working anyway, but still get the blank white page.

We even tried APC and get white pages.
Could you try with PHP 7.2 ?
 
Back
Top Bottom