Hello,
I asked a company to install a module for Magento 2 but it doesn't work due to the base module of magento core is not present.
Any idea how to fix it?
thanks
Sharon
INTL extension is missing in PHP configuration so enable it in your PHP.ini.
check your php.ini and add this, restart server. It will work
Hi @clemence_benharbon ,
This issue occurs due to missing PHP extension intl.
Try to install the extension using below way
For php7
sudo apt-get install php7.0-intl
For php7.2
sudo apt-get install php7.2-intl
Anyway restart your apache after
sudo service apache2 restart
Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!