In Magento log I see something like these:
2015-12-06T18:11:38+00:00 ERR (3): Warning: include(/app/design/frontend/..../..../template): failed to open stream: No such device in /app/code/core/Mage/Core/Block/Template.php on line 241
2015-12-06T18:11:38+00:00 ERR (3): Warning: include(): Failed opening '/app/design/frontend/..../..../template' for inclusion (include_path='/app/code/local:/app/code/community:/app/code/core:/lib:.:/usr/share/pear:/usr/share/php') in /app/code/core/Mage/Core/Block/Template.php on line 241
2015-12-06T18:11:50+00:00 ERR (3): Warning: include(/app/design/frontend/..../..../template): failed to open stream: No such device in /app/code/core/Mage/Core/Block/Template.php on line 241
2015-12-06T18:11:50+00:00 ERR (3): Warning: include(): Failed opening '/app/design/frontend/..../..../template' for inclusion (include_path='/app/code/local:/app/code/community:/app/code/core:/lib:.:/usr/share/pear:/usr/share/php') in /app/code/core/Mage/Core/Block/Template.php on line 241
2015-12-06T18:24:58+00:00 ERR (3): Warning: include(/app/design/frontend/..../..../template): failed to open stream: No such device in /app/code/core/Mage/Core/Block/Template.php on line 241
2015-12-06T18:24:58+00:00 ERR (3): Warning: include(): Failed opening '/app/design/frontend/..../..../template' for inclusion (include_path='/app/code/local:/app/code/community:/app/code/core:/lib:.:/usr/share/pear:/usr/share/php') in /app/code/core/Mage/Core/Block/Template.php on line 241
In Template.php I see
try {
$includeFilePath = realpath($this->_viewDir . DS . $fileName);
if (strpos($includeFilePath, realpath($this->_viewDir)) === 0 || $this->_getAllowSymlinks()) {
include $includeFilePath;
} else {
Mage::log('Not valid template file:'.$fileName, Zend_Log::CRIT, null, null, true);
}
} catch (Exception $e) {
ob_get_clean();
throw $e;
}
In 241 row -> include $includeFilePath;
Any idea what that warning is meaning?