Author Topic: daily "Anacron" messages?  (Read 21 times)

0 Members and 1 Guest are viewing this topic.

Offline
***
daily "Anacron" messages?
« on: Today at 11:17:49 AM »
Hi,

The server is running Alma Linux 9, in the daily "Anacron" messages I have the following texts:

https://prnt.sc/BnXxAsrMBfDg


What is happening?

BR
Venty

Offline
*****
Re: daily "Anacron" messages?
« Reply #1 on: Today at 04:32:04 PM »
Did you change the default php.ini to be more "chatty" about errors? It is printing NOTICE errors to your output, but they are just notices, not fatal errors.
https://phoenixnap.com/kb/php-error-types

Do you have this in your php.ini:
Code: [Select]
error_reporting = E_ALL
display_errors = On
Instead, try:
Code: [Select]
error_reporting = E_ERROR
display_errors = Off

Offline
***
Re: daily "Anacron" messages?
« Reply #2 on: Today at 05:02:53 PM »
Did you change the default php.ini to be more "chatty" about errors? It is printing NOTICE errors to your output, but they are just notices, not fatal errors.
https://phoenixnap.com/kb/php-error-types

Do you have this in your php.ini:
Code: [Select]
error_reporting = E_ALL
display_errors = On
Instead, try:
Code: [Select]
error_reporting = E_ERROR
display_errors = Off

Hi,

Thank you very much for the recommendation...It's true that I should also disable error reporting, but it worries me a little that these current error reports are related to diagnostics and backups, with CentOS 7 it reported that it had made a daily, weekly, etc. backup...?

I also notice that it makes a daily backup for a user that I deleted a few days ago, and today I'm with a different user, maybe some kind of cache?

Thanks in advance!

BR
Venty