cURL does not appear in phpinfo() and fails inside of PHP scripts even after ensuring the following:
curl.so does exist in /usr/lib/php/modules/curl.so along with my other successfully working PHP modules.
/usr/lib/php/modules/curl.so is the only place where curl.so is to be found on the system.
extension=curl.so is uncommented in php.ini
/etc/php/php.ini is the only place where php.ini is to be found on the system.
I restarted my webserver several times.
The phpinfo Configure Command shows: '--with-curl=shared'
However, the big blue block that shows "curl" settings (as typically found in phpinfo on other systems) is not appearing. Furthermore, function_exists('curl_init') returns false inside of PHP.
I must be missing something... But what?
Your help is greatly appreciated!