Hi,
> [Imagick]
> extension=php_imagick.dll
You haven't paid attention to how extensions are declared in php.ini or phpForApache.ini, but how dll files are named in the ext folder!
Extension names in php.ini
extension=curl
;extension=dba
extension=com_dotnet
;extension=dl_test
;extension=enchant
;extension=ffi
extension=fileinfo
;extension=ftp
extension=gd
extension=gettext
etc.
Files in ext :
php_bz2.dll
php_com_dotnet.dll
php_curl.dll
php_dba.dll
php_dl_test.dll
php_enchant.dll
php_exif.dll
php_ffi.dll
php_fileinfo.dll
etc.
So, if the imagick extension file must be named "php_imagick.dll", the load in php.ini must be :
extension=imagick
---------------------------------------------------------------
Documentation Apache -
Documentation PHP -
Documentation MySQL -
Wampserver install files & addons