I have checked the logs and I see repeated entries like: [2026-04-02 23:19:45] WARNING: OIDC: Token request error.; Status: 0; Response:
EDIT: I have fixed it now, in case anyone else gets this issue.
The problem was that I never configured the openssl correctly, I needed to add the cacert.pem file to my php/extras/ssl folder and update the php.ini file. After I made this change it worked.
[curl]
curl.cainfo = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"
[openssl]
openssl.cafile = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"
Download the CA from here: https://curl.se/ca/cacert.pem
EDIT: I have fixed it now, in case anyone else gets this issue.
The problem was that I never configured the openssl correctly, I needed to add the cacert.pem file to my php/extras/ssl folder and update the php.ini file. After I made this change it worked.
[curl]
curl.cainfo = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"
[openssl]
openssl.cafile = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"
Download the CA from here: https://curl.se/ca/cacert.pem

Comment