In CodeIgniter, how can I have PHP error messages emailed to me? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:21:36Zhttp://stackoverflow.com/feeds/question/260597http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me5In CodeIgniter, how can I have PHP error messages emailed to me?Ian Cook2008-11-04T02:07:50Z2009-07-13T13:33:34Z
<p>I'd like to receive error logs via email. For example, if a Warning-level error message should occur, I'd like to get an email about it.</p>
<p>How can I get that working in CI ?</p>
<p>Thanks,</p>
<p>Ian</p>
http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me/260655#2606557Answer by Adam for In CodeIgniter, how can I have PHP error messages emailed to me?Adam2008-11-04T02:40:08Z2009-07-13T13:33:34Z<p>You could extend the Exception core class to do it.</p>
<p>Might have to adjust the reference to CI's email class, not sure if you can instantiate it from a library like this. I don't use CI's email class myself, I've been using the Swift Mailer library. But this should get you on the right path.</p>
<p>Make a file MY_Exceptions.php and place it in /application/libraries/</p>
<pre><code>class MY_Exceptions extends CI_Exceptions {
function My_Exceptions()
{
parent::CI_Exceptions();
}
function log_exception($severity, $message, $filepath, $line)
{
$severity = ( ! isset($this->levels[$severity])) ? $severity : $this->levels[$severity];
log_message('error', 'Severity: '.$severity.' --> '.$message. ' '.$filepath.' '.$line, TRUE);
$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');
$this->email->subject('error');
$this->email->message('Severity: '.$severity.' --> '.$message. ' '.$filepath.' '.$line);
$this->email->send();
}
}
</code></pre>
http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me/260660#2606600Answer by Adam for In CodeIgniter, how can I have PHP error messages emailed to me?Adam2008-11-04T02:43:16Z2008-11-04T02:43:16Z<p>Oh, another option is to get a logrotation application that supports emailing digests. Not sure what platform you are on, but you could just have something monitor the error_log file and send you updates, might not be as neat and certainly you would be limited to only information in the error_log. (error_log is Apache, CI has a /logs/ folder in system, and IIS has the Windows Events)</p>
http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me/1038218#10382180Answer by jignesh for In CodeIgniter, how can I have PHP error messages emailed to me?jignesh2009-06-24T13:05:43Z2009-06-24T13:05:43Z<p>I think this might be occur because of using editor provide on hosting server..</p>