0

I installed installed intl extension by setting extension=intl.so in my php.ini on my Macbook Pro Yosemite

see image

but still symfony 2.7 is asking for it. See in the picture the error. Does anyone have any idea how to solve it? Thank you.

EGHM
  • 2,144
  • 23
  • 37
null085
  • 1
  • 1

1 Answers1

0

Please make sure that the php.ini that Symfony is using is the same as the one where you updated the extension. Especially on OS X, where one might install HomeBrew based PHP Versus the one that came with OS X.

I typically add a <?php phpinfo(); ?> in my web directory and load that file to see which PHP Symfony is using.

rajasaur
  • 5,340
  • 2
  • 27
  • 22
  • The loaded php.ini file is /etc/php.ini. I have already installed the intl extension using these instructions Intl extension If you need Locale: brew install icu4c sudo pecl install intl The path to the ICU libraries and headers is: /usr/local/opt/icu4c/ Edit /etc/php.ini and add extension=intl.so to the end. but php.ini still shows that the intl extension is not loaded :(. – null085 Nov 04 '15 at 08:47