I'm having troubles with file_exists, it returns false despite that file exists, or checking it with string.
$path = $_SERVER['DOCUMENT_ROOT'].$linkImageFull;
var_dump($path, file_exists($path), file_exists('/var/www/app/web/images/krzeselko-bespoke-synergy_main.jpg'));
gives result
string(36) "/var/www/app/web/images/krzeselko-bespoke-synergy_main.jpg"
bool(false)
bool(true)
clearstatcache()
does not help.