Page 1 of 1

Recurring messages in HTTP SSL log

Posted: Fri Sep 25, 2020 8:46 am
by vmesquita
I am gettting tons of messages like this on /var/log/http/ssl_error_log:
ssl_error_log.PNG
How can I fix this?

Re: Recurring messages in HTTP SSL log

Posted: Fri Sep 25, 2020 3:56 pm
by benjaminsmith
Hi,

Those are php notices which are adversary messages and can be safely ignored. You can adjust the settings in the php.ini file to control the number of error messages.

For example, the following will turn off all messages:

Code: Select all

// Turn off all error reporting
error_reporting(0);
However, this can be adjusted. For example, the following will turn off just notices.

Code: Select all

error_reporting(E_ALL & ~E_NOTICE);
See: https://www.php.net/manual/en/function. ... orting.php

Hope that helps and let us know if you have any other questions

Benjamin