/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/base/CComponent.php(265)
253 public function __call($name,$parameters) 254 { 255 if($this->_m!==null) 256 { 257 foreach($this->_m as $object) 258 { 259 if($object->getEnabled() && method_exists($object,$name)) 260 return call_user_func_array(array($object,$name),$parameters); 261 } 262 } 263 if(class_exists('Closure', false) && $this->canGetProperty($name) && $this->$name instanceof Closure) 264 return call_user_func_array($this->$name, $parameters); 265 throw new CException(Yii::t('yii','{class} and its behaviors do not have a method or closure named "{name}".', 266 array('{class}'=>get_class($this), '{name}'=>$name))); 267 } 268 269 /** 270 * Returns the named behavior object. 271 * The name 'asa' stands for 'as a'. 272 * @param string $behavior the behavior name 273 * @return IBehavior the behavior object, or null if the behavior does not exist 274 */ 275 public function asa($behavior) 276 { 277 return isset($this->_m[$behavior]) ? $this->_m[$behavior] : null;
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/application/controllers/RegisterController.php(111): CComponent->__call("getController", array()) 106 $attributeinsertdata[$field] = $value; 107 } 108 if ($register_errormsg != "") 109 { 110 $_SESSION['survey_'.$surveyid]['register_errormsg']=$register_errormsg; 111 $this->getController()->redirect(array('survey/index/sid/'.$surveyid)); 112 } 113 114 //Check if this email already exists in token database 115 $query = "SELECT email FROM {{tokens_$surveyid}}\n" 116 . "WHERE email = '".sanitize_email(Yii::app()->request->getPost('register_email'))."'"; |
#1 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/application/controllers/RegisterController.php(111): RegisterController->getController() 106 $attributeinsertdata[$field] = $value; 107 } 108 if ($register_errormsg != "") 109 { 110 $_SESSION['survey_'.$surveyid]['register_errormsg']=$register_errormsg; 111 $this->getController()->redirect(array('survey/index/sid/'.$surveyid)); 112 } 113 114 //Check if this email already exists in token database 115 $query = "SELECT email FROM {{tokens_$surveyid}}\n" 116 . "WHERE email = '".sanitize_email(Yii::app()->request->getPost('register_email'))."'"; |
#2 |
unknown(0): RegisterController->actionIndex("439566")
|
#3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(RegisterController, array("439566")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(RegisterController, ReflectionMethod, array("surveyid" => "439566")) 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 else 49 return $controller->$methodName(); 50 } 51 52 } |
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/web/CController.php(308): CInlineAction->runWithParams(array("surveyid" => "439566")) 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; |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/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(); |
#7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/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); |
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/web/CWebApplication.php(282): CController->run("index") 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))); |
#9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/web/CWebApplication.php(141): CWebApplication->runController("register/index/surveyid/439566") 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. |
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/framework/base/CApplication.php(169): CWebApplication->processRequest() 164 public function run() 165 { 166 if($this->hasEventHandler('onBeginRequest')) 167 $this->onBeginRequest(new CEvent($this)); 168 register_shutdown_function(array($this,'end'),0,false); 169 $this->processRequest(); 170 if($this->hasEventHandler('onEndRequest')) 171 $this->onEndRequest(new CEvent($this)); 172 } 173 174 /** |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/205/index.php(190): CApplication->run() 185 die (sprintf('%s should be writable by the webserver (755 or 775).', $runtimePath)); 186 } 187 } 188 189 190 Yii::createApplication('LSYii_Application', $config)->run(); 191 192 /* End of file index.php */ 193 /* Location: ./index.php */ |