- Joined
- Nov 25, 2022
- Messages
- 720
- Points
- 253
Reputation:
Zer01ne submitted a new resource:
Official Redis Cache - Setup XenForos build-in Redis Cache
Read more about this resource...
Official Redis Cache - Setup XenForos build-in Redis Cache
To setup XenForos build in Redis you do not need any addon.
In Ubuntu 24.04
1. Install Redis
Bash:
Bash:#apt install php8.3-redis
2. In src/config.php
PHP:$config['cache']['enabled'] = true; $config['cache']['sessions'] = true; $config['cache']['provider'] = 'Redis'; $config['cache']['config']['host'] = '127.0.0.1';
This is all you need and works out of the box. You see...
Read more about this resource...