CException

Alias "ext.galleryManager.GalleryController" is invalid. Make sure it points to an existing PHP file and the file is readable.

/var/www/framework/YiiBase.php(330)

318         if($isClass && (class_exists($className,false) || interface_exists($className,false)))
319             return self::$_imports[$alias]=$className;
320 
321         if(($path=self::getPathOfAlias($alias))!==false)
322         {
323             if($isClass)
324             {
325                 if($forceInclude)
326                 {
327                     if(is_file($path.'.php'))
328                         require($path.'.php');
329                     else
330                         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)));
331                     self::$_imports[$alias]=$className;
332                 }
333                 else
334                     self::$classMap[$className]=$path.'.php';
335                 return $className;
336             }
337             else  // a directory
338             {
339                 if(self::$_includePaths===null)
340                 {
341                     self::$_includePaths=array_unique(explode(PATH_SEPARATOR,get_include_path()));
342                     if(($pos=array_search('.',self::$_includePaths,true))!==false)

Stack Trace

#5
+
 /var/www/html/matrrix/index.php(19): CApplication->run()
14 require_once(dirname(__FILE__).'/protected/vendors/Facebook/autoload.php');
15 // aws php sdk
16 //require_once(dirname(__FILE__).'/protected/vendors/aws/aws-autoloader.php');
17 
18 require_once($yii);
19 Yii::createWebApplication($config)->run();
2024-04-18 21:58:13 Apache Yii Framework/1.1.24