In CodeIgniter, how can I have PHP error messages emailed to me? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:21:36Z http://stackoverflow.com/feeds/question/260597 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me 5 In CodeIgniter, how can I have PHP error messages emailed to me? Ian Cook 2008-11-04T02:07:50Z 2009-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#260655 7 Answer by Adam for In CodeIgniter, how can I have PHP error messages emailed to me? Adam 2008-11-04T02:40:08Z 2009-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-&gt;levels[$severity])) ? $severity : $this-&gt;levels[$severity]; log_message('error', 'Severity: '.$severity.' --&gt; '.$message. ' '.$filepath.' '.$line, TRUE); $this-&gt;load-&gt;library('email'); $this-&gt;email-&gt;from('your@example.com', 'Your Name'); $this-&gt;email-&gt;to('someone@example.com'); $this-&gt;email-&gt;cc('another@another-example.com'); $this-&gt;email-&gt;bcc('them@their-example.com'); $this-&gt;email-&gt;subject('error'); $this-&gt;email-&gt;message('Severity: '.$severity.' --&gt; '.$message. ' '.$filepath.' '.$line); $this-&gt;email-&gt;send(); } } </code></pre> http://stackoverflow.com/questions/260597/in-codeigniter-how-can-i-have-php-error-messages-emailed-to-me/260660#260660 0 Answer by Adam for In CodeIgniter, how can I have PHP error messages emailed to me? Adam 2008-11-04T02:43:16Z 2008-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#1038218 0 Answer by jignesh for In CodeIgniter, how can I have PHP error messages emailed to me? jignesh 2009-06-24T13:05:43Z 2009-06-24T13:05:43Z <p>I think this might be occur because of using editor provide on hosting server..</p>