Welcome Guest, Not a member yet? Register   Sign In
Test for database connection success
#7

[eluser]Pachat[/eluser]
[quote author="Matthieu Fauveau" date="1217739582"]Sure I can hack CI Core but we should have a better method...[/quote]

In order to take hand on the CI Exceptions system, you may override the CI_Exceptions class :
create the file application/librairies/MY_Exceptions.php with
Code:
class MY_Exceptions extends CI_Exceptions {

    function MY_Exceptions()
    {
        parent::CI_Exceptions();
    }
      
    function show_404($page = '')
    {    
        parent::show_404($page);
    }
      
    function show_error($heading, $message, $template = 'error_general')
    {
        //Do whatever you want from $message analysis
        //and | or
        //return parent::show_error($heading, $message, $template);
    }

}


Messages In This Thread
Test for database connection success - by El Forum - 08-01-2008, 08:57 PM
Test for database connection success - by El Forum - 08-02-2008, 01:20 PM
Test for database connection success - by El Forum - 08-02-2008, 02:36 PM
Test for database connection success - by El Forum - 08-02-2008, 05:59 PM
Test for database connection success - by El Forum - 08-02-2008, 06:04 PM
Test for database connection success - by El Forum - 08-02-2008, 08:14 PM
Test for database connection success - by El Forum - 11-02-2008, 09:14 AM
Test for database connection success - by El Forum - 11-02-2008, 09:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB