0 Members and 1 Guest are viewing this topic.
error_reporting = E_ALLdisplay_errors = On
error_reporting = E_ERRORdisplay_errors = Off
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-typesDo you have this in your php.ini: Code: [Select]error_reporting = E_ALLdisplay_errors = OnInstead, try:Code: [Select]error_reporting = E_ERRORdisplay_errors = Off
dnf -y install perl-diagnostics
dnf -y install perl-English
Again, those are Notices -- not errors. If you prefer not to notice them, you can do as I suggested earlier in the thread and change your warning level so they aren't brought front & center to your attention on a regular basis.