1
votes

I have downloaded wamp server from http://www.wampserver.com/en/ in my Windows 8 laptop which is a 32 bit system. On clicking on the pink wamp server icon on the desktop the i get the following error:

PHP Startup:Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_intl.dll'- The specified module could not be found.

what should I do?

I have already tried uninstalling and re installing the program several times, but the same problem persists.

2

2 Answers

0
votes

copy the icu*.dll files to your apache's bin directory. If it is not working in bin directory then copy it in you apache's directory.

OR

You can add c:/wamp/bin/php/php5.5.12/ in your system's PATH

0
votes

I was getting the same error on Mac. I installed PHP INTL using HomeBrew.

For php 7.1 install INTL with this terminal command:

brew install php71-intl

Activate intl extension in php.ini. Use php --ini to check the configuration path.

intl.default_locale = en_utf8

intl.error_level = E_WARNING

intl.use_exceptions = 0