/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/base/CApplication.php(271)
259 return $this->_runtimePath; 260 } 261 } 262 263 /** 264 * Sets the directory that stores runtime files. 265 * @param string $path the directory that stores runtime files. 266 * @throws CException if the directory does not exist or is not writable 267 */ 268 public function setRuntimePath($path) 269 { 270 if(($runtimePath=realpath($path))===false || !is_dir($runtimePath) || !is_writable($runtimePath)) 271 throw new CException(Yii::t('yii','Application runtime path "{path}" is not valid. Please make sure it is a directory writable by the Web server process.', 272 array('{path}'=>$path))); 273 $this->_runtimePath=$runtimePath; 274 } 275 276 /** 277 * Returns the root directory that holds all third-party extensions. 278 * @return string the directory that contains all extensions. Defaults to the 'extensions' directory under 'protected'. 279 */ 280 public function getExtensionPath() 281 { 282 return Yii::getPathOfAlias('ext'); 283 }
#0 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/base/CApplication.php(258): CApplication->setRuntimePath("/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/applic...") 253 { 254 if($this->_runtimePath!==null) 255 return $this->_runtimePath; 256 else 257 { 258 $this->setRuntimePath($this->getBasePath().DIRECTORY_SEPARATOR.'runtime'); 259 return $this->_runtimePath; 260 } 261 } 262 263 /** |
#1 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/widgets/CHtmlPurifier.php(79): CApplication->getRuntimePath() 74 * @return string the purified content 75 */ 76 public function purify($content) 77 { 78 $purifier=new HTMLPurifier($this->options); 79 $purifier->config->set('Cache.SerializerPath',Yii::app()->getRuntimePath()); 80 return $purifier->purify($content); 81 } 82 } |
#2 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/application/helpers/admin/label_helper.php(175): CHtmlPurifier->purify("1900") 170 $title = $codeObj->$strTemp; 171 172 $p = new CHtmlPurifier(); 173 174 if (Yii::app()->getConfig('filterxsshtml')) 175 $title = $p->purify($title); 176 else 177 $title = html_entity_decode($title, ENT_QUOTES, "UTF-8"); 178 179 180 // Fix bug with FCKEditor saving strange BR types |
#3 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/application/controllers/admin/labels.php(343): modlabelsetanswers("1") 338 Yii::app()->session['flashmessage'] = Yii::app()->lang->gT("Label set properties sucessfully updated."); 339 } 340 if ($action == "insertlabelset") 341 $lid = insertlabelset(); 342 if (($action == "modlabelsetanswers") || ($action == "ajaxmodlabelsetanswers")) 343 modlabelsetanswers($lid); 344 if ($action == "deletelabelset") 345 if (deletelabelset($lid)) 346 { 347 Yii::app()->session['flashmessage'] = Yii::app()->lang->gT("Label set sucessfully deleted."); 348 $lid = 0; |
#4 |
unknown(0): labels->process()
|
#5 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/actions/CAction.php(107): ReflectionMethod->invokeArgs(labels, array()) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } |
#6 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/application/core/Survey_Common_Action.php(82): CAction->runWithParamsInternal(labels, ReflectionMethod, array("sa" => "process")) 77 $oMethod = new ReflectionMethod($this, $sDefault); 78 } 79 80 // We're all good to go, let's execute it 81 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 82 return parent::runWithParamsInternal($this, $oMethod, $params); 83 } 84 85 /** 86 * Some functions have different parameters, which are just an alias of the 87 * usual parameters we're getting in the url. This function just populates |
#7 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/CController.php(309): Survey_Common_Action->runWithParams(array("sa" => "process")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#8 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/CController.php(287): CController->runAction(labels) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#9 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/CController.php(266): CController->runActionWithFilters(labels, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#10 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/application/controllers/AdminController.php(158): CController->run("labels") 153 Yii::app()->session['redirectopage'] = Yii::app()->request->requestUri; 154 155 $this->redirect($this->createUrl('/admin/authentication/login')); 156 } 157 158 return parent::run($action); 159 } 160 161 /** 162 * Routes all the actions to their respective places 163 * |
#11 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/CWebApplication.php(276): AdminController->run("labels") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/web/CWebApplication.php(135): CWebApplication->runController("admin/labels/sa/process") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#13 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/framework/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#14 |
+
–
/home/www/34ab61b960fc324dd606bf69bfc25b8b/web/limesurvey/index.php(171): CApplication->run() 166 * 167 */ 168 require_once BASEPATH . 'yii' . EXT; 169 require_once APPPATH . 'core/LSYii_Application' . EXT; 170 171 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run(); 172 173 /* End of file index.php */ 174 /* Location: ./index.php */ |