/var/www/hosts/framework/db/CDbCommand.php(548)
536 { 537 if($this->_connection->enableProfiling) 538 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 539 540 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 541 $message=$e->getMessage(); 542 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 543 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 544 545 if(YII_DEBUG) 546 $message.='. The SQL statement executed was: '.$this->getText().$par; 547 548 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 549 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 550 } 551 } 552 553 /** 554 * Builds a SQL SELECT statement from the given query specification. 555 * @param array $query the query specification in name-value pairs. The following 556 * query options are supported: {@link select}, {@link distinct}, {@link from}, 557 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 558 * {@link limit}, {@link offset} and {@link union}. 559 * @throws CDbException if "from" key is not present in given query parameter 560 * @return string the SQL statement
#0 |
+
–
/var/www/hosts/framework/db/CDbCommand.php(401): CDbCommand->queryInternal() 396 * An empty array is returned if the query results in nothing. 397 * @throws CException execution failed 398 */ 399 public function queryAll($fetchAssociative=true,$params=array()) 400 { 401 return $this->queryInternal('fetchAll',$fetchAssociative ? $this->_fetchMode : PDO::FETCH_NUM, $params); 402 } 403 404 /** 405 * Executes the SQL statement and returns the first row of the result. 406 * This is a convenient method of {@link query} when only the first row of data is needed. |
#1 |
+
–
/var/www/hosts/lk.usoft.ru/protected/modules/tags/models/Tag.php(408): CDbCommand->queryAll() 403 GROUP BY t.id 404 405 ORDER BY c DESC 406 LIMIT :limit'; 407 408 $query_result = self::model()->commandBuilder->createSqlCommand($sql, $params)->queryAll(); 409 410 $result = array(); 411 412 foreach($query_result as $query_string) { 413 if($query_string['part'] == $part && $query_string['id'] == $id) { |
#2 |
+
–
/var/www/hosts/lk.usoft.ru/protected/modules/news/controllers/NewsController.php(105): Tag::findAlso() 100 'userTagsList' => $userTagsList, 101 'last5News' => $this->getLast5NewsByCategory((int)$companyNews->category_id, (int)$companyNews->id), 102 'widgetsBlock' => $this->renderPartial('companyNewsWidgets', ['widgets' => $widgets], true), 103 'subscribe' => $this->getIsSubscribe(), 104 'links' => $this->getNewsLinks((int)$companyNews->id), 105 'also' => Tag::findAlso($model->tags, $model->id, 'news') 106 ]); 107 } 108 109 /** 110 * Displays a particular model. |
#3 |
unknown(0): NewsController->actionView()
|
#4 |
+
–
/var/www/hosts/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs() 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 |
+
–
/var/www/hosts/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal() 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 } |
#6 |
+
–
/var/www/hosts/framework/web/CController.php(312): CInlineAction->runWithParams() 307 $priorAction=$this->_action; 308 $this->_action=$action; 309 310 if ($this->beforeAction($action)) { 311 312 if ($action->runWithParams($this->getActionParams())===false) { 313 $this->invalidActionParams($action); 314 } else { 315 $this->afterAction($action); 316 } 317 } |
#7 |
+
–
/var/www/hosts/framework/web/CController.php(290): CController->runAction() 285 */ 286 public function runActionWithFilters($action,$filters) 287 { 288 289 if(empty($filters)) { 290 $this->runAction($action); 291 } else { 292 $priorAction=$this->_action; 293 $this->_action=$action; 294 CFilterChain::create($this,$action,$filters)->run(); 295 $this->_action=$priorAction; |
#8 |
+
–
/var/www/hosts/framework/web/CController.php(268): CController->runActionWithFilters() 263 if (($parent=$this->getModule())===null) { 264 $parent=Yii::app(); 265 } 266 267 if ($parent->beforeControllerAction($this,$action)) { 268 $this->runActionWithFilters($action,$this->filters()); 269 $parent->afterControllerAction($this,$action); 270 } 271 } else { 272 $this->missingAction($actionID); 273 } |
#9 |
+
–
/var/www/hosts/framework/web/CWebApplication.php(282): CController->run() 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))); |
#10 |
+
–
/var/www/hosts/framework/web/CWebApplication.php(141): CWebApplication->runController() 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. |
#11 |
+
–
/var/www/hosts/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 /** |
#12 |
+
–
/var/www/hosts/lk.usoft.ru/index.php(58): CApplication->run() 53 //Yii::setPathOfAlias('templates', $dirname_file .DIRECTORY_SEPARATOR.'templates'); 54 Yii::setPathOfAlias('core',INDEX_DIR.DIRECTORY_SEPARATOR.'core'); 55 require_once(__DIR__.DIRECTORY_SEPARATOR.'protected' .DIRECTORY_SEPARATOR.'vendors' .DIRECTORY_SEPARATOR.'Loader.php'); 56 Yii::registerAutoloader(array('Loader','systemMainAutoload')); 57 58 Yii::createWebApplication($config_yii_path)->run(); |