I was testing a site in uptime.com and i'm getting this error can't run the test, however it can be done on
https://pagespeed.web.dev/ and
https://tools.pingdom.com/
and the site itself when opened from incognito have no problem with the SSL
I followed some tutorials from YT and stackoverflow but not working
opened the terminal and typed php -i
got the location of loaded configuration file "it's not in my website but in the server" /www/server/php/74/etc
under this address i uploaded cacert.pem
then changed the php.ini curl.cainfo didn't work so i changed both php.ini and php-cli.ini
This was the default
curl.cainfo = /etc/pki/tls/certs/ca-bundle.crt
then i made like this
curl.cainfo = "/www/server/php/74/etc/cacert.pem"
didn't work so i did it like this "doesn't seem right to me, but i'm following tutorials blindly without understanding what is this actually"
curl.cainfo="/path/to/downloaded/cacert.pem"