techLearner
techLearner

Reputation: 5

php startup :unable to load dynamic library

i am getting warning php startup:unable to load dynamic library 'C:/wamp/bin/php/php5.5.12/ext/php_intl.dll'-%1 is not a valid Win32 application how to sole this.

Upvotes: 0

Views: 3548

Answers (1)

Jomon Johnson
Jomon Johnson

Reputation: 164

That is due to invalid dll file.

first you need to find

  • Architecture - 32 bit ot 64 bit
  • compiler version - VC9 or VC11
  • Thread safe or Non thread safe

this can be find by open phpinfo or echoing phpinfo() in any php file. then search for Compiler,Architecture and Thread Safety

then go to http://windows.php.net/download/ and download right Releases. replace needed file then restart web server

Upvotes: 3

Related Questions