Tag: curl

CentOS 7 vs CentOS 8 differences

I ran into several scripts that worked perfectly on CentOS 6 and 7, but failed when moved to CentOS 8. Below are a few real examples along with the fixes. curl A script I was using (originally inspired by 802.1x authentication on macOS and a GitHub example) contained: # CentOS 7 curl –negotiate -u : … On CentOS 8, this…

Read More »

Enable Curl support for php in Windows

I had been testing an installation, where I encountered an error that curl support was needed to continue. After a little research, I found the following to work for me. Download the version of php that is being used. Extract php_curl.dll to php\extensions Extract libeay32.dll and ssleay32.dll to system path ie. windows\system32 Edit php.ini and uncomment (remove the semi-colon) the…

Read More »