CException

Псевдонім "blog.BlogModule" невірний. Переконайтесь, що він вказує на існуючий PHP файл.

/var/www/vhosts/val.ua/framework/YiiBase.php(322)

310         if($isClass && (class_exists($className,false) || interface_exists($className,false)))
311             return self::$_imports[$alias]=$className;
312 
313         if(($path=self::getPathOfAlias($alias))!==false)
314         {
315             if($isClass)
316             {
317                 if($forceInclude)
318                 {
319                     if(is_file($path.'.php'))
320                         require($path.'.php');
321                     else
322                         throw new CException(Yii::t('yii','Alias "{alias}" is invalid. Make sure it points to an existing PHP file and the file is readable.',array('{alias}'=>$alias)));
323                     self::$_imports[$alias]=$className;
324                 }
325                 else
326                     self::$classMap[$className]=$path.'.php';
327                 return $className;
328             }
329             else  // a directory
330             {
331                 if(self::$_includePaths===null)
332                 {
333                     self::$_includePaths=array_unique(explode(PATH_SEPARATOR,get_include_path()));
334                     if(($pos=array_search('.',self::$_includePaths,true))!==false)

Stack Trace

#6
+
 /var/www/vhosts/val.ua/index.php(14): CApplication->run()
09 defined('YII_ENABLE_EXCEPTION_HANDLER') or define('YII_ENABLE_EXCEPTION_HANDLER',true);
10 
11 // specify how many levels of call stack should be shown in each log message
12 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3);
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
2024-03-19 09:42:31 nginx/1.14.0 Yii Framework/1.1.14