6

How can I fix this issue please? I am running php5.6 on OS X 10.11.3

PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions/no-debug-non-zts-20121212/php_intl.dll' - dlopen(/usr/lib/php/extensions/no-debug-non-zts-20121212/php_intl.dll, 9): image not found in Unknown on line 0

Jay Blanchard
  • 34,243
  • 16
  • 77
  • 119
Kunal
  • 323
  • 1
  • 2
  • 9
  • Please post your code. You're doing something thats throwing an error, but we cant troubleshoot the error if we don't know what you're doing thats triggering it. – Adam Konieska Mar 18 '16 at 19:56

2 Answers2

6

Edit /etc/php.ini and uncomment the line extensions php_intl.dll

Jay Blanchard
  • 34,243
  • 16
  • 77
  • 119
Kunal
  • 323
  • 1
  • 2
  • 9
5

You may need to edit your php.ini file like so, if your hosting provider allows it: Change the following line:

     ;extension=php_intl.dll

to

      extension=php_intl.dll

But see also:

intl extension: installing php_intl.dll

Community
  • 1
  • 1
Hektor
  • 1,845
  • 15
  • 19