Issue
I am using the following configuration on a local machine:
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:
- https://www.php.net/manual/en/curl.installation.php
- https://make.wordpress.org/hosting/handbook/server-environment/#php-extensions
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>
Answered By - James Answer Checked By - Willingham (WPSolving Volunteer)