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:
error_reporting = E_ALL
display_errors = On
Instead, try:
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