Welcome Guest, Not a member yet? Register   Sign In
Discovering Route.php and Routing.php settings in custom Modules in CodeIgniter4
#5

(This post was last modified: 02-12-2025, 11:41 AM by olisaagbafor.)

First, there is no need to include the Route files in the $routeFiles since the modules are autoloaded and the Routes are autodiscovered.

But in each of the custom module config path, I included the Services.php file and in the Routes.php files, I brought back the former routes settings with the appropriate namespace to each of these files

in BudgetingModule\Config\Routes.php file

PHP Code:
namespace BudgetingModule\Config;
// Create a new instance of our RouteCollection class.
$routes Services::routes();
$routes->setDefaultNamespace('BudgetingModule\Controllers');
$routes->setDefaultController('Index');
$routes->setDefaultMethod('index');
$routes->setTranslateURIDashes(false);
$routes->setAutoRoute(false); 

(02-12-2025, 10:48 AM)ozornick Wrote: Look at the output of the spark command, maybe you made a mistake with NS? At least the full path to the files must be specified ROOTPATH . "feemodule/Config/Routes.php".
Show how you installed namespace: composer.json or Autoload, Constants. Everything works, you made a mistake somewhere.

Thanks a whole lot for your responses
Reply


Messages In This Thread
RE: Discovering Route.php and Routing.php settings in custom Modules in CodeIgniter4 - by olisaagbafor - 02-12-2025, 11:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB