/var/www/html/protected/components/FController.php(50)
38 'users'=>array('@'), 39 ), 40 array('deny', 41 'users'=>array('*'), 42 ), 43 */ 44 ); 45 46 } 47 48 49 public function init(){ 50 header('Content-Type: text/html; charset=utf-8'); 51 52 $this->siteOptions=Options::getOptions('global'); //Настройки сайта 53 $this->language=Language::getId(); 54 $this->metaArray=Metatags::getBaseMetaTag(); //Базовые метатеги 55 56 Yii::$classMap = array_merge(Yii::$classMap, array( 57 'CaptchaExtendedAction' => Yii::getPathOfAlias('ext.captchaExtended').DIRECTORY_SEPARATOR.'CaptchaExtendedAction.php', 58 'CaptchaExtendedValidator' => Yii::getPathOfAlias('ext.captchaExtended').DIRECTORY_SEPARATOR.'CaptchaExtendedValidator.php' 59 )); 60 } 61 62
| #0 |
+
–
/var/www/html/protected/components/FController.php(50): header("Content-Type: text/html; charset=utf-8") 45 46 } 47 48 49 public function init(){ 50 header('Content-Type: text/html; charset=utf-8'); 51 52 $this->siteOptions=Options::getOptions('global'); //Настройки сайта 53 $this->language=Language::getId(); 54 $this->metaArray=Metatags::getBaseMetaTag(); //Базовые метатеги 55 |
| #1 |
+
–
/var/www/framework/web/CWebApplication.php(282): FController->init() 277 if(($ca=$this->createController($route))!==null) 278 { 279 list($controller,$actionID)=$ca; 280 $oldController=$this->_controller; 281 $this->_controller=$controller; 282 $controller->init(); 283 $controller->run($actionID); 284 $this->_controller=$oldController; 285 } 286 else 287 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', |
| #2 |
+
–
/var/www/framework/web/CWebApplication.php(142): CWebApplication->runController("forum/thread/one") 137 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 138 $_GET[$name]=$value; 139 } 140 else 141 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 142 $this->runController($route); 143 } 144 145 /** 146 * Registers the core application components. 147 * This method overrides the parent implementation by registering additional core components. |
| #3 |
+
–
/var/www/framework/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
| #4 |
+
–
/var/www/html/protected/components/WebApplicationEndBehavior.php(26): CApplication->run() 21 // Attach the changeModulePaths event handler 22 // and raise it. 23 $this->onModuleCreate = array($this, 'changeModulePaths'); 24 $this->onModuleCreate(new CEvent($this->owner)); 25 26 $this->owner->run(); // Run application. 27 } 28 29 // This event should be raised when CWebApplication 30 // or CWebModule instances are being initialized. 31 public function onModuleCreate($event) |
| #5 |
unknown(0): WebApplicationEndBehavior->runEnd("front")
|
| #6 |
+
–
/var/www/framework/base/CComponent.php(261): call_user_func_array(array(WebApplicationEndBehavior, "runEnd"), array("front")) 256 if($this->_m!==null) 257 { 258 foreach($this->_m as $object) 259 { 260 if($object->getEnabled() && method_exists($object,$name)) 261 return call_user_func_array(array($object,$name),$parameters); 262 } 263 } 264 if(class_exists('Closure', false) && $this->canGetProperty($name) && $this->$name instanceof Closure) 265 return call_user_func_array($this->$name, $parameters); 266 throw new CException(Yii::t('yii','{class} and its behaviors do not have a method or closure named "{name}".', |
| #7 |
+
–
/var/www/html/indexy.php(176): CComponent->__call("runEnd", array("front")) 171 // Remove the following lines when in production mode 172 defined('YII_DEBUG') or define('YII_DEBUG', true); 173 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 174 175 require_once($yii); 176 Yii::createWebApplication($config)->runEnd('front'); 177 178 if(isset($_GET['t'])){ 179 echo 123; 180 die(); 181 } |
| #8 |
+
–
/var/www/html/indexy.php(176): CWebApplication->runEnd("front") 171 // Remove the following lines when in production mode 172 defined('YII_DEBUG') or define('YII_DEBUG', true); 173 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 174 175 require_once($yii); 176 Yii::createWebApplication($config)->runEnd('front'); 177 178 if(isset($_GET['t'])){ 179 echo 123; 180 die(); 181 } |