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

EROFS is read-only error message in Ubuntu snap VSCode when using Apc Customize UI++ extension

I'm current trying to use the Apc Customize UI++ extension on VS Code. Using on Windows It worked perfectly, but on Ubuntu i faced this error: Apc Extension failed: Error: EROFS: read-only file system, rename '/snap/code/151/usr/share/code/resources/app/out/bootstrap-amd.js' -> '/snap/code/151/usr/share/code/resources/app/out/bootstrap-amd.js.apc.extension.backup' Could someone…

VIEW QUESTION

Ubuntu – apscheduler BackgroundScheduler() process is not running in the background

I am working on a project. Below are the files from which the problem resides. cli.py import click from apscheduler.schedulers.background import BackgroundScheduler scheduler = BackgroundScheduler(daemon=True) def func(): print("scheduler running with interval....") @click.command() @click.option('--interval', type=int, default=5, help='Interval for the scheduler in…

VIEW QUESTION
Back To Top
Search