Russian TYPO3 community

Russian TYPO3 community (http://forum.typo3.ru/index.php)
-   Общие вопросы (http://forum.typo3.ru/forumdisplay.php?f=12)
-   -   помогите пожалуйста с ошибкой Class 't3lib_cache_Manager' not found (http://forum.typo3.ru/showthread.php?t=8273)

mogilshik 29.12.2009 17:24

помогите пожалуйста с ошибкой Class 't3lib_cache_Manager' not found
 
на всех страницах фронтенда и в бекенде следующая ошибка

Fatal error: Class 't3lib_cache_Manager' not found in .../t3lib/class.t3lib_div.php on line 4794

Что это за класс 't3lib_cache_Manager'?

class.t3lib_div.php нормальный, в районе названной строки там стоит вот это

Цитата:

public static function &makeInstance($className) {
// holds references of singletons
static $instances = array();

// Get final classname
$className = self::getClassName($className);

if (isset($instances[$className])) {
// it's a singleton, get the existing instance
$instance = $instances[$className];
} else {
if (func_num_args() > 1) {
// getting the constructor arguments by removing this
// method's first argument (the class name)
$constructorArguments = func_get_args();
array_shift($constructorArguments);

$reflectedClass = new ReflectionClass($className);
$instance = $reflectedClass->newInstanceArgs($constructorArguments);
} else {
$instance = new $className;
}

if ($instance instanceof t3lib_Singleton) {
// it's a singleton, save the instance for later reuse
$instances[$className] = $instance;
}
}

return $instance;
Куда смотреть-то надо?


Часовой пояс GMT +4, время: 11:48.

Работает на vBulletin® версия 3.8.1.
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Перевод: zCarot