CodeIgniter Forums
Error - controller: default - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Error - controller: default (/showthread.php?tid=78950)



Error - controller: default - Chroma - 03-31-2021

Hi,

I am having a problem on a site that I have recently updated to CI 4.1.1 from 4.0.4.

In the logs I am seeing:

Code:
ERROR - 2021-03-31 10:54:50 --> controller: default
ERROR - 2021-03-31 10:54:50 --> method: unknown
ERROR - 2021-03-31 10:54:50 --> parameters:

That block for each request, so obviously there is a lot showing up.

Does anyone have any idea where it is coming from?

My routes are as follows:

PHP Code:
<?php
namespace Config;

// Create a new instance of our RouteCollection class.
$routes Services::routes();

// Load the system's routing file first, so that the app and ENVIRONMENT
// can override as needed.
if (file_exists(SYSTEMPATH 'Config/Routes.php'))
{
    require 
SYSTEMPATH 'Config/Routes.php';
}

/**
 * --------------------------------------------------------------------
 * Router Setup
 * --------------------------------------------------------------------
 */
$routes->setDefaultNamespace('App\Controllers');
$routes->setDefaultController('Company');
$routes->setDefaultMethod('index');
$routes->setTranslateURIDashes(true);
$routes->set404Override();
$routes->setAutoRoute(true);

/**
 * --------------------------------------------------------------------
 * Route Definitions
 * --------------------------------------------------------------------
 */

// We get a performance increase by specifying the default
// route since we don't have to scan directories.
$routes->get('/''Company::index');

/**
 * --------------------------------------------------------------------
 * Additional Routing
 * --------------------------------------------------------------------
 *
 * There will often be times that you need additional routing and you
 * need to it be able to override any defaults in this file. Environment
 * based routes is one such time. require() additional route files here
 * to make that happen.
 *
 * You will have access to the $routes object within that file without
 * needing to reload it.
 */
if (file_exists(APPPATH 'Config/' ENVIRONMENT '/Routes.php'))
{
    require 
APPPATH 'Config/' ENVIRONMENT '/Routes.php';
}

$routes->set404Override('App\Controllers\Error::error404');

// NOTE: Changed format for destination compared to CI3
$routes->get('download/(:any)''Downloads::free/$1');

$routes->get('(:num)''Cartoon::get/$1'); 

Company should be the default controller and as far as I can see, it is setup correctly.

As far as I can tell, the site is working correctly, apart from the logs filling up with this error.

Any help would be appreciated.


RE: Error - controller: default - InsiteFX - 03-31-2021

From the error you showed it looks like it's trying to run a method that doe's not exists.

Try raising the log level to 9 and see if you get a different error or more info.


RE: Error - controller: default - Chroma - 04-01-2021

Hi InssiteFX,

Thank you for your reply.

Your suggestion led me to the cause of the problem and this is now resolved.

Thanks.