/mnt/data/shnoulle/nginx/www/develop/framework/db/CDbCommand.php(358)
346 { 347 if($this->_connection->enableProfiling) 348 Yii::endProfile('system.db.CDbCommand.execute('.$this->getText().$par.')','system.db.CDbCommand.execute'); 349 350 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 351 $message=$e->getMessage(); 352 Yii::log(Yii::t('yii','CDbCommand::execute() failed: {error}. The SQL statement executed was: {sql}.', 353 array('{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 354 355 if(YII_DEBUG) 356 $message.='. The SQL statement executed was: '.$this->getText().$par; 357 358 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 359 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 360 } 361 } 362 363 /** 364 * Executes the SQL statement and returns query result. 365 * This method is for executing an SQL query that returns result set. 366 * @param array $params input parameters (name=>value) for the SQL execution. This is an alternative 367 * to {@link bindParam} and {@link bindValue}. If you have multiple input parameters, passing 368 * them in this way can improve the performance. Note that if you pass parameters in this way, 369 * you cannot bind parameters or values using {@link bindParam} or {@link bindValue}, and vice versa. 370 * Please also note that all values are treated as strings in this case, if you need them to be handled as
| #0 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/db/ar/CActiveRecord.php(1083): CDbCommand->execute()				1078 { 1079 Yii::trace(get_class($this).'.insert()','system.db.ar.CActiveRecord'); 1080 $builder=$this->getCommandBuilder(); 1081 $table=$this->getTableSchema(); 1082 $command=$builder->createInsertCommand($table,$this->getAttributes($attributes)); 1083 if($command->execute()) 1084 { 1085 $primaryKey=$table->primaryKey; 1086 if($table->sequenceName!==null) 1087 { 1088 if(is_string($primaryKey) && $this->$primaryKey===null)  | 
		
| #1 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/db/ar/CActiveRecord.php(811): CActiveRecord->insert(null)				806 * @return boolean whether the saving succeeds 807 */ 808 public function save($runValidation=true,$attributes=null) 809 { 810 if(!$runValidation || $this->validate($attributes)) 811 return $this->getIsNewRecord() ? $this->insert($attributes) : $this->update($attributes); 812 else 813 return false; 814 } 815 816 /**  | 
		
| #2 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/application/libraries/PluginManager/PluginManager.php(147): CActiveRecord->save()				142 $plugin->version = (string) $extensionConfig->xml->metadata->version; 143 if(!empty($extensionConfig->xml->priority)) { 144 $plugin->priority = (int) $extensionConfig->xml->priority; 145 } 146 $plugin->plugin_type = $pluginType; 147 $plugin->save(); 148 return [true, null]; 149 } 150 151 /** 152 * Return the status of plugin (true/active or false/desactive)  | 
		
| #3 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/application/controllers/admin/PluginManagerController.php(353): LimeSurvey\PluginManager\PluginManager->installPlugin(ExtensionConfig, "upload")				348 ); 349 $this->getController()->redirect($this->getPluginManagerUrl()); 350 } else { 351 list($result, $errorMessage) = $pluginManager->installPlugin( 352 $pluginInfo['extensionConfig'], 353 $pluginInfo['pluginType'] 354 ); 355 if ($result) { 356 Yii::app()->setFlashMessage( 357 gT('Plugin was installed.'), 358 'success'  | 
		
| #4 | 
				 
										 unknown(0): PluginManagerController->installPluginFromFile()				 
							 | 
		
| #5 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(PluginManagerController, array())				104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 }  | 
		
| #6 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/application/core/Survey_Common_Action.php(86): CAction->runWithParamsInternal(PluginManagerController, ReflectionMethod, array("r" => "admin/pluginmanager", "sa" => "installPluginFromFile"))				81 $oMethod = new ReflectionMethod($this, $sDefault); 82 } 83 84 // We're all good to go, let's execute it 85 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 86 return parent::runWithParamsInternal($this, $oMethod, $params); 87 } 88 89 /** 90 * Some functions have different parameters, which are just an alias of the 91 * usual parameters we're getting in the url. This function just populates  | 
		
| #7 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("r" => "admin/pluginmanager", "sa" => "installPluginFromFile"))				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;  | 
		
| #8 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/CController.php(286): CController->runAction(PluginManagerController)				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();  | 
		
| #9 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/CController.php(265): CController->runActionWithFilters(PluginManagerController, 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);  | 
		
| #10 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/application/controllers/AdminController.php(163): CController->run("pluginmanager")				158 } 159 160 $this->runModuleController($action); 161 162 163 return parent::run($action); 164 } 165 166 /** 167 * Starting with LS4, 3rd party developper can extends any of the LimeSurve controllers. 168 */  | 
		
| #11 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/CWebApplication.php(282): AdminController->run("pluginmanager")				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)));  | 
		
| #12 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/pluginmanager")				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.  | 
		
| #13 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/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 /**  | 
		
| #14 | 
				 + 
						– 
										 /mnt/data/shnoulle/nginx/www/develop/index.php(195): CApplication->run()				190 require_once APPPATH . 'core/LSYii_Application' . EXT; 191 192 $config = require_once(APPPATH . 'config/internal' . EXT); 193 194 Yii::$enableIncludePath = false; 195 Yii::createApplication('LSYii_Application', $config)->run(); 196 197 /* End of file index.php */ 198 /* Location: ./index.php */  |