Hello,
It seems that your web server doesn't use /var/www as HOME folder. We recommend you to get the HOME folder of the user of web server using the getenv function (please check the information about this PHP function on https://www.phpdocx.com/documentation/conversion-plugin/common-problems-and-possible-errors). If you need to set the HOME folder with PHP, you can use putenv:
putenv("HOME=/var/www");
Regards.