I have a local installation of Pimcore on my Mac. I don't use anything like MAMP or Homebrew, but just the normal php/apache/mysql environment. All worked fine on High Sierra. Yesterday I upgraded to Big Sur. Now I get an error message when wanting to load Pimcore.
The Symfony\Component\Intl\Locale\Locale::getPrimaryLanguage() is not implemented. Please install the "intl" extension for full localization capabilities.
I found out that it uses the php.ini in folder etc, which by default was named php.ini.default. I removed the .default and made a few changes like
- uncommenting extension=intl
- upload_max_filesize = 20M
- max_file_uploads = 40
When I now check phpinfo() I see that the changes in the two upload values are there, but the intl missing error is still there.
php -i | grep intl
shows this result:
/usr/local/php5/php.d/50-extension-intl.ini,
intl
intl.default_locale => no value => no value
intl.error_level => 0 => 0
intl.use_exceptions => 0 => 0
Do you have any advice what I'm doing wrong or what is missing? Thank you