Base
Base copied to clipboard
Class "Redis" not found
On installing or running below command we are getting Class "Redis" not found
composer create-project typicms/base mywebsite
You may need to install the Redis module for the PHP version used on the server.
In my case, I use PHP 8.2 FPM on Ubuntu Server:
sudo apt install php8.2-redis
sudo service apache2 restart
sudo service php8.2-fpm restart
sudo apt install redis-server -y
sudo systemctl enable redis-server
sudo systemctl start redis-server