Home > Software design >  i cant install magento 2 centos
i cant install magento 2 centos

Time:11-08

I want to install magento on my server with centos 7 installed. but i am getting a few errors. I could never understand the reason. plesk panel board.

Composer appears to be installed.enter image description here

enter image description here

CodePudding user response:

You need to install pdo_mysql PHP extension, you can simply run:

get install php-mysql

CodePudding user response:

Try install extensions (Some extensitons is not necessary but it should be used):

cli, json, common, mysql, zip, gd, mbstring, curl, xml, bcmath, soap, intl

Ex with php7.4:

sudo apt-get install -y php7.4-cli php7.4-json php7.4-common php7.4-mysql php7.4-zip php7.4-gd php7.4-mbstring php7.4-curl php7.4-xml php7.4-bcmath php7.4-soap php7.4-intl

  • Related