Debug Mode for CodeIgniter?
Posted
by nebukadnezzar
on Stack Overflow
See other posts from Stack Overflow
or by nebukadnezzar
Published on 2010-06-11T01:59:54Z
Indexed on
2010/06/11
2:02 UTC
Read the original article
Hit count: 385
php
|codeigniter
Does CodeIgniter provide a Debug Mode, for example, when accessing an Invalid URL?
Ruby on Rails does show debugging Messages when a incorrect URL has been given, and the controller is unable to resolve it using the routes map. How would I enable such debugging messages in CodeIgniter?
The profiler ...
$this->output->enable_profiler(TRUE);
... only affects single classes, but not all routes. So debugging without an actual debugger mode is a little... difficult. :-)
© Stack Overflow or respective owner