skip to Main Content

Centos – Codeigniter OpenID ERR_SSL_PROTOCOL_ERROR

I am trying to implement Jumbojett OpenID Authentication in my Linux Centos 9 Server. This is my login controller (welcome.php) code: public function login_sso() { if (!$this->session->userdata('USERNIP')) { $oidc = new OpenIDConnectClient( $this->config->item('SSO_PROVIDER_URL'), $this->config->item('SSO_CLIENT_ID'), $this->config->item('SSO_CLIENT_SECRET') ); $isAuthenticate = $oidc->authenticate(); if…

VIEW QUESTION
Back To Top
Search