Base icon indicating copy to clipboard operation
Base copied to clipboard

Class "Redis" not found

Open rupinder25 opened this issue 10 months ago • 1 comments

On installing or running below command we are getting Class "Redis" not found

composer create-project typicms/base mywebsite

rupinder25 avatar Mar 12 '25 06:03 rupinder25

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

unit-cesar avatar Mar 30 '25 16:03 unit-cesar