I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :
An Error Was Encou
I experienced the same problem, but I fixed it by altering my application/config/routes.php file.
I made some restructuring to my controller directories and forget to effect it on the routes file.
Earlier:
$route['application/apply'] = 'ex/application/account/create';
and now:
$route['application/apply'] = 'application/account/create';