10 Steps to properly do PHP Bug Tracking and Fixing as Fast as possible – Part 4
9. Monitor the PHP Error Log File to Quickly Fix Serious Bugs 10. Fix Your Bugs but Never Edit Code on the Production Server 9. Monitor the PHP Error Log File to Quickly Fix Serious Bugs Error logs are useful to discover bugs that may be causing PHP errors but you cannot spend all day looking at your PHP error log files. It would be better if you could be notified when a PHP error occurs. That is the purpose of the Log Watcher class. It can monitor a log file and send an email message to you when new lines that are added to the log file. You can use it for instance from a script started periodically by cron, lets say every 5 minutes, and make it track…


