Recurring messages in HTTP SSL log
Recurring messages in HTTP SSL log
I am gettting tons of messages like this on /var/log/http/ssl_error_log:
How can I fix this?
You do not have the required permissions to view the files attached to this post.
-
benjaminsmith
- Posts: 5324
- Joined: Wed Aug 22, 2018 4:39 pm
- Location: saint paul
Re: Recurring messages in HTTP SSL log
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:
However, this can be adjusted. For example, the following will turn off just notices.
See: https://www.php.net/manual/en/function. ... orting.php
Hope that helps and let us know if you have any other questions
Benjamin
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);
Code: Select all
error_reporting(E_ALL & ~E_NOTICE);
Hope that helps and let us know if you have any other questions
Benjamin
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Be sure to check out our Knowledgebase for helpful articles and solutions!