Hello,
This is from our PHP FPM logs:
01-Jul-2019 13:44:47 UTC] PHP Warning: include_once(/var/www/venietiam/venietiam.com/wp-content/plugins/types/application/../vendor/toolset/filesystem/file.php): failed to open stream: No such file or directory in /var/www/VENIETIAM/venietiam.com/wp-content/plugins/types/vendor/toolset/toolset-common/utility/autoloader.php on line 121
The fact is that "/var/www/venietiam" does not exist: it's VENIETIAM (uppercase), so the error is due to a lowercase() function in the code of autoloader.php:
// The file should have been there but it isn't. Perhaps we're dealing with a case-insensitive file system.
// If we don't succeed even with lowercase, let the warning manifest - no "@".
return include_once( strtolower( $file_name ) );
But ours is not a case-insensitive file system. We're on a standard Debian 8.
Maybe it's not nothing worrisome, but we check our logs continuously and we though better to report it.
HI, yes it's better to report it so we can make sure there's nothing serious. Can you confirm the file file.php actually exists on your server at the path:
/var/www/VENETIAM/venietiam.com/wp-content/plugins/types/vendor/toolset/filesystem/file.php
If so, what are the file permission settings for this file?
Can you also confirm you are running the latest plugin versions of all Toolset plugins? Is it possible this issue was logged during a plugin update?