Welcome Guest, Not a member yet? Register   Sign In
CLI error Session: Initialization under CLI aborted.
#1

(This post was last modified: 06-27-2024, 01:52 PM by afin67.)

Hi,
I'm using PHP 8.2 and CI 4.4.1 I have a Controller to run only in CLI mode, but when I try to run it, I did not receive any error message but the Controller did not execute, in the logs under writable I have the error DEBUG - 2024-06-27 15:38:53 --> Session: Initialization under CLI aborted. 
I'm using IonAuth also.
Any idea what I'm doing wrong?
Thank you!
Reply
#2

Are you extending BaseController? Sessions are not available for the CLI. What are you doing inside the method?
Simple CI 4 project for beginners codeigniter-expenses ( topic )
Reply
#3

(06-27-2024, 09:25 AM)ozornick Wrote: Are you extending BaseController? Sessions are not available for the CLI. What are you doing inside the method?

It is a very basic Controller:

PHP Code:
<?php

namespace App\Controllers;

use 
App\Controllers\BaseController;

class 
Trace extends BaseController
{

    
    
public function index()
    {
        log_message('debug','writing messagee');
        
    
}

Reply
#4

(This post was last modified: 06-27-2024, 03:34 PM by kenjis.)

The following is not an error, just info for debugging. No harm.

DEBUG - 2024-06-27 15:38:53 --> Session: Initialization under CLI aborted.
Reply
#5

(06-27-2024, 03:33 PM)kenjis Wrote: The following is not an error, just info for debugging. No harm.

DEBUG - 2024-06-27 15:38:53 --> Session: Initialization under CLI aborted.

But my Controller is never executed, why?
Reply
#6

Cannot reproduce.

PHP Code:
--- a/app/Config/Routes.php
+++ b/app/Config/Routes.php
@@ -5,+5,@@ use CodeIgniter\Router\RouteCollection;
/**
  * @var RouteCollection $routes
  */
-$routes->get('/''Home::index');
+
$routes->cli('/''Home::index'); 

PHP Code:
--- a/app/Controllers/Home.php
+++ b/app/Controllers/Home.php
@@ -4,+4,@@ namespace App\Controllers;

class 
Home extends BaseController
{
-
    public function index(): string
+    public function index()
    {
-
        return view('welcome_message');
+
        log_message('debug''writing messagee');
    }


Code:
$ php spark env development

Code:
$ php public/index.php /

Code:
$ cat writable/logs/log-2024-06-28.log
DEBUG - 2024-06-28 00:53:52 --> writing messagee
Reply
#7

(06-27-2024, 05:56 PM)kenjis Wrote: Cannot reproduce.

PHP Code:
--- a/app/Config/Routes.php
+++ b/app/Config/Routes.php
@@ -5,+5,@@ use CodeIgniter\Router\RouteCollection;
/**
  * @var RouteCollection $routes
  */
-$routes->get('/''Home::index');
+
$routes->cli('/''Home::index'); 

PHP Code:
--- a/app/Controllers/Home.php
+++ b/app/Controllers/Home.php
@@ -4,+4,@@ namespace App\Controllers;

class 
Home extends BaseController
{
-
    public function index(): string
+    public function index()
    {
-
        return view('welcome_message');
+
        log_message('debug''writing messagee');
    }


Code:
$ php spark env development

Code:
$ php public/index.php /

Code:
$ cat writable/logs/log-2024-06-28.log
DEBUG - 2024-06-28 00:53:52 --> writing messagee
I found the problem, I had a filter that is executed before every controller to verify if the user is logged-in (I forgot that! Smile ) I only added to the filter an IF to verify if the controller is executed via CLI, that resolved the issue!
THX for your responses.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB