Monday 24 September 2018

Error Logging in .htaccess


This example shows you how to log errors to a file, and prevent showing them to the user. Make sure that the file exists and you're able to write to it. 


# display no errs to user
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# log to file
php_flag log_errors on
php_value error_log /location/to/php_error.log


Previous Post
Next Post

post written by:

1 comment:

Hit me with a comment!