Does CodeIgniter provide debugging mode, for example, when accessing an invalid URL?
Ruby on Rails shows debugging messages when an invalid URL was specified and the controller cannot resolve it using the route map. How to enable such debugging messages in CodeIgniter?
Profiler ...
$this->output->enable_profiler(TRUE);
... affects only individual classes, but not all routes. Therefore, debugging without a real debugging mode is a bit ... complicated. :-)
php codeigniter
user350814
source share