Search code examples
phpwordpresscurlgdimagick

Can not load curl, gd and imagick PHP extensions


I am using the following configuration on a local machine:

  • PHP 7.4.27
  • Apache 2.4
  • Windows 7 x86 (32 bit)

All the paths are set. All the lines in config files are uncommented. Everything works fine, but when I look at the "site health" WordPress page I see the following:

The following PHP extensions are not found or switched off: curl, gd, imagick.

This doesn't help:

So, what else I can do/check to get these extensions working? Thank you in advance.


Solution

  • You can see what extensions are loaded with a simple script in your public directory:

    <pre><?= print_r(get_loaded_extensions(), TRUE); ?></pre>