You can enable the personal php error logging for particular user and disable it for visitors.
Open the .htaccess file and add the following lines in .htaccess to enable the error logging. It will save the error logs in PHP_errors.log file under the /home/path/public_html/domain folder.
Quote:
php_flag log_errors on
php_value error_log /home/path/public_html/domain/PHP_errors.log
|
Similarly you can disable the error logging for visitors with the following lines in .htaccess
Quote:
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
|