/home4/fosener1/public_html/framework/web/CWebApplication.php(286)
274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); 288 } 289 290 /** 291 * Creates a controller instance based on a route. 292 * The route should contain the controller ID and the action ID. 293 * It may also contain additional GET variables. All these must be concatenated together with slashes. 294 * 295 * This method will attempt to create a controller in the following order: 296 * <ol> 297 * <li>If the first segment is found in {@link controllerMap}, the corresponding 298 * controller configuration will be used to create the controller;</li>
#0 |
+
–
/home4/fosener1/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("uploads/news/banner_eccbc87e4b5ce2fe28308fd9f2a7baf3.jpeg") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#1 |
+
–
/home4/fosener1/public_html/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#2 |
+
–
/home4/fosener1/public_html/protected/components/WebApplicationEndBehavior.php(23): CApplication->run() 18 $this->_endName = $name; 19 // Attach the changeModulePaths event handler 20 // and raise it. 21 $this->onModuleCreate = array($this, 'changeModulePaths'); 22 $this->onModuleCreate(new CEvent($this->owner)); 23 $this->owner->run(); // Run application. 24 } 25 26 // This event should be raised when CWebApplication 27 // or CWebModule instances are being initialized. 28 public function onModuleCreate($event) |
#3 |
+
–
/home4/fosener1/public_html/framework/base/CComponent.php(261): WebApplicationEndBehavior->runEnd("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) || property_exists($this, $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}".', |
#4 |
+
–
/home4/fosener1/public_html/index.php(18): CComponent->__call("runEnd", array("front")) 13 // Remove the following lines when in production mode 14 defined('YII_DEBUG') or define('YII_DEBUG', true); 15 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 16 17 require_once($yii); 18 Yii::createWebApplication($config)->runEnd('front'); 19 ?> |