Сам код ошибки:
2018-12-06 21:46:04 - PHP Notice: Error: Could not load template /home/grandeby/maximal.by/catalog/view/theme/default/template/default/template/product/product.tpl! in /home/grandeby/maximal.by/system/storage/modification/system/library/template/php.php on line 23
default/template - повторяется два раза. Где можно порыться, чтобы найти ошибку?
Ошибка ссылается на этот файл, но там всё нормально, ведь другие модули грузятся без проблем.
namespace Template;
final class PHP {
private $data = array();
public function set($key, $value) {
$this->data[$key] = $value;
}
public function render($template) {
$file = DIR_TEMPLATE . $template;
if (is_file($file)) {
extract($this->data);
ob_start();
require($file);
return ob_get_clean();
}
trigger_error('Error: Could not load template ' . $file . '!');
exit();
}
}