/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/application/core/LSYii_Controller.php(108)
096 } 097 098 if (!function_exists('mb_convert_encoding')) { 099 $dieoutput .= "This script needs the PHP Multibyte String Functions library installed: See <a href='http://manual.limesurvey.org/wiki/Installation_FAQ'>FAQ</a> and <a href='http://de.php.net/manual/en/ref.mbstring.php'>PHP documentation</a><br />"; 100 } 101 102 if ($dieoutput != '') { 103 throw new CException($dieoutput); 104 } 105 106 if (ini_get("max_execution_time") < Yii::app()->getConfig('max_execution_time')) { 107 try { 108 set_time_limit(Yii::app()->getConfig('max_execution_time')); // Maximum execution time - works only if safe_mode is off 109 } catch (Exception $e) { 110 }; 111 } 112 if (ini_get('memory_limit') != -1 && convertPHPSizeToBytes(ini_get("memory_limit")) < convertPHPSizeToBytes(Yii::app()->getConfig('memory_limit') . 'M')) { 113 try { 114 ini_set("memory_limit", Yii::app()->getConfig('memory_limit') . 'M'); // Set Memory Limit for big surveys 115 } catch (Exception $e) { 116 }; 117 } 118 119 // The following function (when called) includes FireBug Lite if true 120 defined('FIREBUG') or define('FIREBUG', Yii::app()->getConfig('use_firebug_lite'));
#0 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/application/core/LSYii_Controller.php(108):
set_time_limit(1200) 103 throw new CException($dieoutput); 104 } 105 106 if (ini_get("max_execution_time") < Yii::app()->getConfig('max_execution_time')) { 107 try { 108 set_time_limit(Yii::app()->getConfig('max_execution_time')); // Maximum execution time - works only if safe_mode is off 109 } catch (Exception $e) { 110 }; 111 } 112 if (ini_get('memory_limit') != -1 && convertPHPSizeToBytes(ini_get("memory_limit")) < convertPHPSizeToBytes(Yii::app()->getConfig('memory_limit') . 'M')) { 113 try { |
#1 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/application/controllers/AdminController.php(35):
LSYii_Controller->customInit() 30 * @access protected 31 * @return void 32 */ 33 protected function customInit() 34 { 35 parent::customInit(); 36 App()->getComponent('bootstrap'); 37 $this->sessioncontrol(); 38 39 $this->user_id = Yii::app()->user->getId(); 40 // Check if the user really exists |
#2 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/application/core/LSYii_Controller.php(45):
AdminController->customInit() 40 $this->loadHelper('globalsettings'); 41 // tracevar function 42 $this->loadHelper('common'); 43 $this->loadHelper('expressions.em_manager'); 44 $this->loadHelper('replacements'); 45 $this->customInit(); 46 } 47 48 /** 49 * Check that installation was already done by looking for config.php 50 * Will redirect to the installer script if not exists. |
#3 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/framework/web/CWebApplication.php(359):
LSYii_Controller->__construct("admin", null) 354 require($classFile); 355 if(class_exists($className,false) && is_subclass_of($className,'CController')) 356 { 357 $id[0]=strtolower($id[0]); 358 return array( 359 new $className($controllerID.$id,$owner===$this?null:$owner), 360 $this->parseActionParams($route), 361 ); 362 } 363 return null; 364 } |
#4 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/framework/web/CWebApplication.php(276):
CWebApplication->createController("") 271 * @param string $route the route of the current request. See {@link createController} for more details. 272 * @throws CHttpException if the controller could not be created. 273 */ 274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); |
#5 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/framework/web/CWebApplication.php(141):
CWebApplication->runController("admin") 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. |
#6 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/framework/base/CApplication.php(185):
CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#7 |
+
–
/home/clients/939129089b83c0f6235fc9811f257387/site_dev_kce_be/limesurvey5/index.php(192): CApplication->run() 187 require_once APPPATH . 'core/LSYii_Application' . EXT; 188 189 $config = require_once(APPPATH . 'config/internal' . EXT); 190 191 Yii::$enableIncludePath = false; 192 Yii::createApplication('LSYii_Application', $config)->run(); 193 194 /* End of file index.php */ 195 /* Location: ./index.php */ |