I am trying to install civicrm on my Mac and I got error in step no 5

64 Views Asked by At

enter image description here I am trying to install CiviCRM on my laptop through Drupal 8. please help me with this error.

1

There are 1 best solutions below

0
Pobtastic On

This is simply that your version of PHP doesn't have the intl extension compiled in.

How you address this, very much depends on how you've installed PHP on your system or, if you haven't at all (and are using the built-in system PHP).

I'm just going to pick a generic route here, and assume this is OSX PHP as some versions don't come with intl support (e.g. PHP 7.3 shipped with macOS Catalina) and say ... Save yourself some time and just use Homebrew to do this. Follow the instructions to install brew, then install your required version of PHP using;

brew update
brew install [email protected]
brew link [email protected]

It likely already has intl support, you can test by using;

php -m | grep intl