/www/htdocs/w00c3515/cms/protected/vendors/Zend/Feed/Rss.php(521)
509 * Send feed to a http client with the correct header 510 * 511 * @return void 512 * @throws Zend_Feed_Exception if headers have already been sent 513 */ 514 public function send() 515 { 516 if (headers_sent()) { 517 /** 518 * @see Zend_Feed_Exception 519 */ 520 require_once 'Zend/Feed/Exception.php'; 521 throw new Zend_Feed_Exception('Cannot send RSS because headers have already been sent.'); 522 } 523 524 header('Content-Type: application/rss+xml; charset=' . $this->_element->ownerDocument->actualEncoding); 525 526 echo $this->saveXml(); 527 } 528 529 }
#0 |
+
–
/www/htdocs/w00c3515/cms/protected/controllers/SiteController.php(714): Zend_Feed_Rss->send() 709 'link'=>'http://www.'.$this->domainAlias.'.de', 710 'charset'=>'UTF-8', 711 'entries'=>$entries, 712 ),'rss'); 713 714 $feed->send(); 715 } 716 717 public function actionListByArtist() 718 { 719 if(isset($_POST['searchArtist'])) |
#1 |
+
–
/www/htdocs/w00c3515/yii/framework/web/actions/CInlineAction.php(49): SiteController->actionFeed() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#2 |
+
–
/www/htdocs/w00c3515/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array()) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#3 |
+
–
/www/htdocs/w00c3515/yii/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#4 |
+
–
/www/htdocs/w00c3515/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#5 |
+
–
/www/htdocs/w00c3515/yii/framework/web/CWebApplication.php(282): CController->run("feed") 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))); |
#6 |
+
–
/www/htdocs/w00c3515/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("site/feed") 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. |
#7 |
+
–
/www/htdocs/w00c3515/yii/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#8 |
+
–
/www/htdocs/w00c3515/cms/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(); |