skip to Main Content

I cloned a repository and created a development environment with docker and nginx as a server. However, when running the composer install command I run into the following error:

Error running composer install

And in the browser:

in browser

*I’m use ubuntu 20.04

2

Answers


  1. Install PHP session package

    # pkg install php7.4-session
    
    Login or Signup to reply.
  2. Setup PHP-FPM for Apache2

    sudo apt-get install php-fpm
    restart php-fpm.service
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search