Site Health: "The optional module imagick is not installed or has been disabled"

Just after installing WordPress, click Tools-->Site Health, and the reminder in the middle of the red box below appears. Here I will bring you a simple solution.

There is usually also a picture format, which is not shown because I have already processed it.

Let’s take imagick as an example:

1. First install ImageMagick. If it is a pagoda panel, find the corresponding PHP version setting in the software store, open the installation extension, and install ImageMagick, fileinfo, exif, etc.

2. After the installation is complete, modify php.ini to add extensions.

 

 Add the corresponding lines to the php.ini file,

For example:

extension=imagick

extension=fileinfo

extension=exif

Of course, two of them, fileinfo and exif, originally existed in php.ini. After searching, delete the preceding ";" to make them effective.

Finally, restart php. So far, the above problem has been solved.

 

Guess you like

Origin blog.csdn.net/kuaile_0509/article/details/131198613