3
This error appears when Load in the Initial method:
Unablex to load your default controller. Please make sure the controller specified in your Routes.php file is Valid.
And I’m running the project localhost
and it works perfectly.
But on the server, it doesn’t work. I tried to change the PHP version to lower or higher, it didn’t work either.
I’m routing using third_party mx
Routes.php
$route['default_controller'] = 'inicial/inicial';
$route['404_override'] = 'inicial/erro';
I tried to replace initial/initial with just initial. It didn’t work either. What would be wrong? If locally it works perfectly.
I’m using Codeigniter to render the project.