Skip to content

Instantly share code, notes, and snippets.

@domtra
Created June 5, 2020 14:02
Show Gist options
  • Save domtra/9167cbe876a39aa599d388735dd40f8c to your computer and use it in GitHub Desktop.
Save domtra/9167cbe876a39aa599d388735dd40f8c to your computer and use it in GitHub Desktop.
php error reporting
# supress php errors
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# enable PHP error logging
php_flag log_errors on
php_value error_log /home/path/public_html/domain/PHP_errors.log
# prevent access to PHP error log
<Files PHP_errors.log>
Order allow,deny
Deny from all
Satisfy All
</Files>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment