I'm using NGINX with PHP-FPM on Debian Wheezy via DotDeb repo.
This is the only curl reference in my php.ini file and I'm not sure what I need to do. Any help is appreciated (it's already installed)
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
;curl.cainfo =
; Local Variables:
; tab-width: 4
; End:
Check whether you have
php5-curl
installedIf isn't installed,
Ensure the path in
extension_dir
exists, and contains curl.so, if not, change to the correct path.Ensure the
/etc/php5/mods-available/curl.ini
exists and has the curl.so loadedIf everything is correct, restart PHP-FPM
To enable curl uncomment