/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/YiiBase.php(427)
415 { 416 include($classFile); 417 if(YII_DEBUG && basename(realpath($classFile))!==$className.'.php') 418 throw new CException(Yii::t('yii','Class name "{class}" does not match class file "{file}".', array( 419 '{class}'=>$className, 420 '{file}'=>$classFile, 421 ))); 422 break; 423 } 424 } 425 } 426 else 427 include($className.'.php'); 428 } 429 else // class name with namespace in PHP 5.3 430 { 431 $namespace=str_replace('\\','.',ltrim($className,'\\')); 432 if(($path=self::getPathOfAlias($namespace))!==false) 433 include($path.'.php'); 434 else 435 return false; 436 } 437 return class_exists($className,false) || interface_exists($className,false); 438 } 439 return true;
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/YiiBase.php(427): YiiBase::autoload() 422 break; 423 } 424 } 425 } 426 else 427 include($className.'.php'); 428 } 429 else // class name with namespace in PHP 5.3 430 { 431 $namespace=str_replace('\\','.',ltrim($className,'\\')); 432 if(($path=self::getPathOfAlias($namespace))!==false) |
#1 |
unknown(0): YiiBase::autoload("limesurvey_lang")
|
#2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/application/controllers/admin/export.php(260): spl_autoload_call("limesurvey_lang") 255 // * the explang language code is used in SQL queries 256 // * the alang object is used to translate headers and hardcoded answers 257 // In the future it might be possible to 'post' the 'export language' from 258 // the exportresults form 259 $explang = Yii::app()->request->getPost('exportlang',$surveybaselang); 260 $elang = new limesurvey_lang($explang); 261 262 //Get together our FormattingOptions and then call into the exportSurvey 263 //function. 264 $options = new FormattingOptions(); 265 $options->selectedColumns = Yii::app()->request->getPost('colselect'); |
#3 |
unknown(0): export->exportresults()
|
#4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(export, array()) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/application/core/Survey_Common_Action.php(99): CAction->runWithParamsInternal(export,
ReflectionMethod, array("surveyid" => "975921", "sa" =>
"exportresults", "iSurveyId" => "975921", "iSurveyID" =>
"975921")) 094 $oMethod = new ReflectionMethod($this, $sDefault); 095 } 096 097 // We're all good to go, let's execute it 098 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 099 return parent::runWithParamsInternal($this, $oMethod, $params); 100 } 101 102 /** 103 * Some functions have different parameters, which are just an alias of the 104 * usual parameters we're getting in the url. This function just populates |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("surveyid" => "975921", "sa" => "exportresults")) 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; |
#7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/CController.php(286): CController->runAction(export) 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(); |
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/CController.php(265): CController->runActionWithFilters(export, 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); |
#9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/application/controllers/AdminController.php(164): CController->run("export") 159 $this->redirect(array('/admin/authentication/sa/login')); 160 } 161 162 } 163 164 return parent::run($action); 165 } 166 167 /** 168 * Routes all the actions to their respective places 169 * |
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/CWebApplication.php(282): AdminController->run("export") 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))); |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/export/sa/exportresults") 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. |
#12 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/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 /** |
#13 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/206/index.php(200): CApplication->run() 195 die (sprintf('%s should be writable by the webserver (755 or 775).', $runtimePath)); 196 } 197 } 198 199 200 Yii::createApplication('LSYii_Application', $config)->run(); 201 202 /* End of file index.php */ 203 /* Location: ./index.php */ |