エラーが発生しました致命的なエラー:クラス'CI_Controller'が233行目の....\ core\CodeIgniter.phpに見つかりません
application / core / My_Exception.phpにMy_Exceptionsというクラスを作成します。基本的に、ユーザーが自分のサイトからエラーを受け取ったときにメールを受け取りたいです。
<?php
class My_Exceptions extends CI_Exceptions{
var $CI="";
function __construct(){
parent::__construct();
$this->CI =& get_instance();
}
function show_404($page = '', $log_error = TRUE)
{
$heading = "404 Page My Not Found";
$message = "The page you requested was not found.";
// By default we log this, but allow a dev to skip it
if ($log_error)
{
log_message('error', '404 Page Not Found --> '.$page);
}
//Email to Developer
$this->CI->load->library('email');
$uri = $this->CI->uri->uri_string();
$this->CI->email->from('error-donotreply@YOURAPP.com', 'APP Error');
$this->CI->email->to('youremail@example.org');
$this->CI->email->subject('APP Error [severity: '.$severity.']');
$this->CI->email->message("Page not Found. From URL: ".$uri);
$this->CI->email->send();
echo $this->show_error($heading, $message, 'error_404', 404);
exit;
}
}
助けてください !!!