Welcome Guest, Not a member yet? Register   Sign In
Error - controller: default
#1

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.
Reply


Messages In This Thread
Error - controller: default - by Chroma - 03-31-2021, 02:59 AM
RE: Error - controller: default - by InsiteFX - 03-31-2021, 02:05 PM
RE: Error - controller: default - by Chroma - 04-01-2021, 01:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB