PHP warning

include(Memcache.php): failed to open stream: No such file or directory

/var/www/club32/data/www/club32.ua/yii/framework/YiiBase.php(418)

406                 {
407                     foreach(self::$_includePaths as $path)
408                     {
409                         $classFile=$path.DIRECTORY_SEPARATOR.$className.'.php';
410                         if(is_file($classFile))
411                         {
412                             include($classFile);
413                             break;
414                         }
415                     }
416                 }
417                 else
418                     include($className.'.php');
419             }
420             else  // class name with namespace in PHP 5.3
421             {
422                 $namespace=str_replace('\\','.',ltrim($className,'\\'));
423                 if(($path=self::getPathOfAlias($namespace))!==false)
424                     include($path.'.php');
425                 else
426                     return false;
427             }
428             return class_exists($className,false) || interface_exists($className,false);
429         }
430         return true;

Stack Trace

#11
+
 /var/www/club32/data/www/club32.ua/protected/behaviors/WebApplicationEndBehavior.php(39): CApplication->run()
34         //$this->onModuleCreate = array($this, 'changeModulePaths');
35         //вызываем событие
36         //$this->onModuleCreate(new CEvent ($this->owner));
37 
38         $this->changeModulePaths();
39         $this->owner->run();        
40     }
41     
42     // обработчик события onModuleCreate
43     public function onModuleCreate($event)
44     {
#14
+
 /var/www/club32/data/www/club32.ua/index.php(19): CComponent->__call("runEnd", array("frontend"))
14 
15 }
16 
17 require_once($yii);
18 $app = Yii::createWebApplication($config);
19 $app->runEnd('frontend');
#15
+
 /var/www/club32/data/www/club32.ua/index.php(19): CWebApplication->runEnd("frontend")
14 
15 }
16 
17 require_once($yii);
18 $app = Yii::createWebApplication($config);
19 $app->runEnd('frontend');
2024-03-29 00:33:58 Apache/2.4.29 (Ubuntu) Yii Framework/1.1.10