/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(1527)
1515 } 1516 1517 /** 1518 * Sends a cookie. 1519 * @param CHttpCookie $cookie cookie to be sent 1520 */ 1521 protected function addCookie($cookie) 1522 { 1523 $value=$cookie->value; 1524 if($this->_request->enableCookieValidation) 1525 $value=Yii::app()->getSecurityManager()->hashData(serialize($value)); 1526 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1527 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly); 1528 else 1529 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure); 1530 } 1531 1532 /** 1533 * Deletes a cookie. 1534 * @param CHttpCookie $cookie cookie to be deleted 1535 */ 1536 protected function removeCookie($cookie) 1537 { 1538 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1539 setcookie($cookie->name,'',0,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly);
#0 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(1527): setcookie("YII_CSRF_TOKEN", "dFIxaV9HUk5xcWQ5RFMyQ3RsYVBtVFl-MFhPVVVBWXpBcB25Cy9XvqnH7o_Bt849...", 0, "/", ...) 1522 { 1523 $value=$cookie->value; 1524 if($this->_request->enableCookieValidation) 1525 $value=Yii::app()->getSecurityManager()->hashData(serialize($value)); 1526 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1527 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly); 1528 else 1529 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure); 1530 } 1531 1532 /** |
#1 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(1479): CCookieCollection->addCookie(CHttpCookie) 1474 if($cookie instanceof CHttpCookie) 1475 { 1476 $this->remove($name); 1477 parent::add($name,$cookie); 1478 if($this->_initialized) 1479 $this->addCookie($cookie); 1480 } 1481 else 1482 throw new CException(Yii::t('yii','CHttpCookieCollection can only hold CHttpCookie objects.')); 1483 } 1484 |
#2 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CHttpRequest.php(1303): CCookieCollection->add("YII_CSRF_TOKEN", CHttpCookie) 1298 $cookie=$this->getCookies()->itemAt($this->csrfTokenName); 1299 if(!$cookie || ($this->_csrfToken=$cookie->value)==null) 1300 { 1301 $cookie=$this->createCsrfCookie(); 1302 $this->_csrfToken=$cookie->value; 1303 $this->getCookies()->add($cookie->name,$cookie); 1304 } 1305 } 1306 1307 return $this->_csrfToken; 1308 } |
#3 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/base/CComponent.php(111): CHttpRequest->getCsrfToken() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#4 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/views/layouts/content_only.php(95): CComponent->__get("csrfToken") 090 </script> 091 </head> 092 093 <body> 094 <?= CHtml::hiddenField('CM[baseUrl]', $this->createUrl('/')) ?> 095 <?= CHtml::hiddenField('CM[YII_CSRF_TOKEN]', Yii::app()->request->csrfToken) ?> 096 <!-- Page Container --> 097 <div class="container"> 098 <?= $content ?> 099 </div> 100 |
#5 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CBaseController.php(126): require("/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/views/l...") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#6 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CBaseController.php(95): CBaseController->renderInternal("/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/views/l...", array("content" => "<style xmlns="http://www.w3.org/1999/html">
body {
..."), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#7 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(787): CBaseController->renderFile("/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/views/l...", array("content" => "<style xmlns="http://www.w3.org/1999/html">
body {
..."), true) 782 { 783 if($this->beforeRender($view)) 784 { 785 $output=$this->renderPartial($view,$data,true); 786 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 787 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 788 789 $this->afterRender($view,$output); 790 791 $output=$this->processOutput($output); 792 |
#8 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/controllers/LangController.php(167): CController->render("/survey/_form_fill", array("model" => Survey, "survey" => Survey, "fields" => array(Field, Field, Field, Field, ...), "highestPage" => "1")) 162 163 $this->render('/survey/_form_fill', array( 164 'model' => $model, 165 'survey' => $survey, 166 'fields' => $fields, 167 'highestPage' => $highestPage 168 )); 169 } 170 } |
#9 |
unknown(0): LangController->actionView("17")
|
#10 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(LangController, array("17")) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#11 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(LangController, ReflectionMethod, array("id" => "17")) 42 { 43 $methodName='action'.$this->getId(); 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#12 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CController.php(308): CInlineAction->runWithParams(array("id" => "17")) 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; |
#13 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/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(); |
#14 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/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); |
#15 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CWebApplication.php(285): CController->run("view") 280 { 281 list($controller,$actionID)=$ca; 282 $oldController=$this->_controller; 283 $this->_controller=$controller; 284 $controller->init(); 285 $controller->run($actionID); 286 $this->_controller=$oldController; 287 } 288 else 289 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 290 array('{route}'=>$route===''?$this->defaultController:$route))); |
#16 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/web/CWebApplication.php(144): CWebApplication->runController("lang/view") 139 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 140 $_GET[$name]=$value; 141 } 142 else 143 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 144 $this->runController($route); 145 } 146 147 /** 148 * Registers the core application components. 149 * This method overrides the parent implementation by registering additional core components. |
#17 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/protected/framework/base/CApplication.php(250): CWebApplication->processRequest() 245 public function run() 246 { 247 if ($this->hasEventHandler('onBeginRequest')) 248 $this->onBeginRequest(new CEvent($this)); 249 register_shutdown_function(array($this, 'end'), 0, false); 250 $this->processRequest(); 251 if ($this->hasEventHandler('onEndRequest')) 252 $this->onEndRequest(new CEvent($this)); 253 } 254 255 /** |
#18 |
+
–
/var/www/vhosts/clingroup.net/sp.clingroup.net/index.php(18): CApplication->run() 13 defined('YII_DEBUG') or define('YII_DEBUG', $app['DEBUG']); 14 // specify how many levels of call stack should be shown in each log message 15 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 16 17 require_once($yii); 18 Yii::createWebApplication($config)->run(); |