FIX - Worpress missing plugins - imagick - curl - mbstring

SYSTEM INFORMATION
OS type and version: Debian 10
Webmin version: 1.973
Virtualmin version: 6.16

Fresh minimal install of Debian 10 - Virtualmin auto installation.

After migrating the wordpress sites over I noticed in System Health section in wordpress, some modules were missing.

- The optional module, imagick, is not installed, or has been disabled.
- The optional module, curl, is not installed, or has been disabled.
- The optional module, mbstring, is not installed, or has been disabled.

To install missing parts:

imagick

apt-get install php7.4-imagick

or

apt-cache search imagick | grep php

to get a list of available packages (if you are running a different version of PHP)

Curl

apt install php7.4-curl

or

apt-cache search php-curl | grep php

to get a list of available packages (if you are running a different version of PHP)

mbstring

apt install php7.4-mbstring

or

apt-cache search php-mbstring | grep php

to get a list of available packages (if you are running a different version of PHP)

Hopefully this will help someone in the future…

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.