Welcome Guest, Not a member yet? Register   Sign In
Redirect to user defined view page if any type of error occurs
#1

I was able to redirect only database type error using hooks concept but does not work for general all type of error.

using below code i was able to redirect db related error. and error_get_last() always return null only


<?php
class PHPFatalError {

    public function setHandler() {
//        print_r(error_get_last()); //always returns null
        register_shutdown_function([$this, 'handleShutdown']);
    }

    function handleShutdown() {
       
        $CI =& get_instance();
        $CI->load->database();
        $has_error $CI->db->error();

    if ($has_error['message'] != '') {
        redirect('');
    }


    }


}


?>
Reply
#2

PHP handles most of the general errors.

CI handles them by using a custom Exception Error Handler, you may need to extend it to
work the way you want.

It's located in ./system/core/Exceptions.php

If you extend it place it in ./application/core/MY_Exceptions.php
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB