Доброго времени суток, помогите решить проблему.
Сайт выдает следующую ошибку:
Fatal error: Class 'Controllerproductproduct' not found in /home/***/***/www/vqmod/vqcache/vq2-system_engine_front.php on line 39
в данном файле в 39 строке прописано:
private function execute($action) {
if (file_exists($action->getFile())) {
require_once(VQMod::modCheck($action->getFile()));
$class = $action->getClass();
$controller = new $class($this->registry);
if (is_callable(array($controller, $action->getMethod()))) {
$action = call_user_func_array(array($controller, $action->getMethod()), $action->getArgs());
} else {
$action = $this->error;
$this->error = '';
}
} else {
$action = $this->error;
$this->error = '';
}
Ни какие модули не устанавливались.
Пытался переустановить Vqmod, обновил до версии 2.4.1, но ошибку по прежнему выдает.
Буду премного благодарен за помощь!