skip to Main Content

I am trying to launch the “guestbook” web app from the “Symfony 5: the fast track” book. I check that all is well installed by taping the following command:
symfony book:check-requirements
and all is ok.
But when I launch the local web server and the guestbook web site with:
symfony open:local
I got the following error on my web page:
Cannot find the “redis” extension nor the “predis/predis” package

Installation of redis is not mentioned in the book.
I am on Mac Os X Mojave.

Any Idea?

Regards

2

Answers


  1. Install redis in your library, you can download and read instruction here Redis PECL

    Login or Signup to reply.
  2. You need to:

    • install predis/predis package:
    composer require predis/predis
    
    • and update your .env.local:
    REDIS_URL=redis://localhost:usedPort?timeout=5
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search