The message may be the problem:
A Setting in your php.ini could be causing the problem: Either the 'extension_dir' value is incorrect or the dll does not exist.
The configuration of extension_dir
may perhaps be wrong in your php.ini, which is affecting loading extensions.
If the extensions are actually inside the folder c:/wamp64/bin/php/php7.0.10/ext
, then the way in php.ini
must be
extension_dir="ext"
Or:
extension_dir="c:/wamp64/bin/php/php7.0.10/ext"
If it still fails it’s because somehow the php_intl.dll
does not exist inside the folder or has been moved to c:/wamp64/bin/php/php7.0.10/
or using an incorrect version of .dll
(I even had some problems with PHP7 extensions on Windows)
If your DLL’s are out of the folder ext
you can then adjust the extension_dir
for:
extension_dir="."
Or:
extension_dir="c:/wamp64/bin/php/php7.0.10"
Or move all files with prefix php_
into the folder ext