I can’t disable the warnings.
I tried editing the php.ini with no success. Then, looking at the code, I saw that the following command was executed in the “filefunc,inc,php” file: error_reporting(E_ALL & ~(E_STRICT | E_NOTICE | E_DEPRECATED));
I changed it to: error_reporting(E_ALL & ~(E_STRICT | E_NOTICE | E_DEPRECATED | E_WARNING));
and the warnings disappeared.
Is there a way to stop seeing these messages without editing the code?
Is that a special module you have installed? Because I do not have any path like that in my (dev) Dolibarr (develop branch) (the version at hand I could just easily test)