CException

Property "CUrlManager.enablePrettyUrl" is not defined.

/var/www/vhosts/znuweb/framework/YiiBase.php(220)

208             {
209                 unset($args[0]);
210                 $class=new ReflectionClass($type);
211                 // Note: ReflectionClass::newInstanceArgs() is available for PHP 5.1.3+
212                 // $object=$class->newInstanceArgs($args);
213                 $object=call_user_func_array(array($class,'newInstance'),$args);
214             }
215         }
216         else
217             $object=new $type;
218 
219         foreach($config as $key=>$value)
220             $object->$key=$value;
221 
222         return $object;
223     }
224 
225     /**
226      * Imports a class or a directory.
227      *
228      * Importing a class is like including the corresponding class file.
229      * The main difference is that importing a class is much lighter because it only
230      * includes the class file when the class is referenced the first time.
231      *
232      * Importing a directory is equivalent to adding a directory into the PHP include path.

Stack Trace

#5
+
 /var/www/vhosts/znuweb/index.php(13): CApplication->run()
08 defined('YII_DEBUG') or define('YII_DEBUG',true);
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 
12 require_once($yii);
13 Yii::createWebApplication($config)->run();
2025-05-18 12:39:57 Apache Yii Framework/1.1.14