Does this look right? Obviously you still want to know about production errors, so I'd like to log them. Development I want to see -everything- and I want it to display on the page. The assumption is production won't have any notices as the code should be clean and our higher priority are fixing errors. But that one is easily editable if needed :) Production: display_errors = Off display_startup_errors = Off error_reporting = E_ALL & ~E_NOTICE expose_php = Off log_errors = On error_log = syslog Dev: display_errors = On display_startup_errors = On error_reporting = E_ALL expose_php = On log_errors = On error_log = syslog Am I missing any? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php