Last active
August 29, 2015 13:56
-
-
Save adykto/8950026 to your computer and use it in GitHub Desktop.
PHP setup on .htaccess
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # supress php errors | |
| php_flag display_startup_errors off | |
| php_flag display_errors off | |
| php_flag html_errors off | |
| php_value docref_root 0 | |
| php_value docref_ext 0 | |
| # 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