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 be maybe wrong in your php.ini, which is affecting loading extensions.
If the extensions are actually inside the c:/wamp64/bin/php/php7.0.10/ext
folder, then the path 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 php_intl.dll
does not exist inside the folder or has been moved to c:/wamp64/bin/php/php7.0.10/
or is using an incorrect version of .dll
(I even had some problems with PHP7 extensions on Windows)
If your dlls are outside the ext
folder you can then set the extension_dir
to:
extension_dir="."
Or:
extension_dir="c:/wamp64/bin/php/php7.0.10"
Or move all files with php_
prefix to the ext
folder