XF 2.1 Forum does not work with Memcached

hongtrang

Member
Licensed customer
My forum configures cache support according to this tutorial
Memcached
Code:
$ config ['cache'] ['enabled'] = true;
$ config ['cache'] ['provider'] = 'Memcached';
$ config ['cache'] ['config'] = [
     'server' => '127.0.0.1'
];
However, the website does not work

Please help me.!
 
I have resolved
1. Enable Remi PHP 7.3 repository
To enable Remi PHP 7.3 repository, run the command below.
Code:
yum-config-manager --enable remi-php73
2. yum install php-pecl-memcache php-pecl-memcached
3. systemctl restart httpd
 
Back
Top Bottom