2

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.

Tiny
  • 27,221
  • 105
  • 339
  • 599
SHJS
  • 21
  • 1
  • 2
  • possible duplicate of [Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php\_intl.dll'](http://stackoverflow.com/questions/24984913/unable-to-load-dynamic-library-c-wamp-bin-php-php5-5-12-ext-php-intl-dll) – Shaiful Islam Mar 31 '15 at 16:11

3 Answers3

1

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

Deepak
  • 47
  • 4
0

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

CNV
  • 21
  • 1
  • 5
0

I added path to the PHP folder in the system PATH environment and it helped me.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Dec 20 '21 at 11:11