Imagick and PHP 8.3
Is it still not possible to install Imagick for PHP 8.3 at this time. There is a known issue with Imagick and PHP 8.3. This has been reported, and from reading the git page, it seems it should be resolved in the next release of Imagick:
https://github.com/Imagick/imagick/pull/641
Is this solved?
-
Hey hey! That specific issue you linked has been resolved, but there are other issues such as this one:
https://github.com/Imagick/imagick/issues/640
and there are comments as recent as two days ago saying this still isn't working for PHP 8.3.
0 -
You can install it via pecl
cd /usr/local
mkdir imagick83
cd imagick83
wget https://pecl.php.net/get/imagick-3.7.0.tgz
tar xf imagick-3.7.0.tgz
cd imagick-3.7.0
/opt/cpanel/ea-php83/root/usr/bin/phpize
./configure --with-php-config=/opt/cpanel/ea-php83/root/usr/bin/php-config
make
make installecho "extension=imagick.so" >> /opt/cpanel/ea-php83/root/etc/php.ini
service httpd restart0 -
Hi vacancy,
There was a small error here:
cd /usr/local
mkdir imagick83
cd imagick83
wget https://pecl.php.net/get/imagick-3.7.0.tgz
tar xf imagick-3.7.0.tgz
cd imagick-3.7.0
/opt/cpanel/ea-php83/root/usr/bin/phpize
./configure --with-php-config=/opt/cpanel/ea-php83/root/usr/bin/php-config
make
make installecho "extension=imagick.so" >> /opt/cpanel/ea-php83/root/etc/php.ini
service httpd restartThe rest of the routine went like clockwork. The only thing was it didn't say it was installed in cPanel:
But Xenforo says it it's there!
Just a tiny point, in case people were wondering.
Regards,
Alex
0
Please sign in to leave a comment.
Comments
3 comments