Debug Mode for CodeIgniter?
        Posted  
        
            by 
                user350814
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user350814
        
        
        
        Published on 2010-06-11T01:59:54Z
        Indexed on 
            2012/09/22
            3:38 UTC
        
        
        Read the original article
        Hit count: 146
        
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